*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --green: #028f2c;
    --green-light: #07ec26;
    --green-mint: #e8f5ee;
    --black: #111111;
    --gray-dark: #444;
    --gray-mid: #888;
    --gray-light: #f5f5f5;
    --white: #ffffff;
    --radius: 16px;
    --card-shadow: 0 2px 20px rgba(0,0,0,0.06);
  }

  html { scroll-behavior: smooth; }

  img,
  svg,
  video,
  canvas,
  iframe {
    max-width: 100%;
  }

  img {
    height: auto;
  }

  a,
  button,
  input,
  select,
  textarea,
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    overflow-wrap: break-word;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #0e0e0e;
    color: var(--black);
    overflow-x: hidden;
  }

  /* page wrapper (card style) */
  .in-page-shell .page-bg {
    position: fixed;
    inset: 0;
    background: url('../images/slider/slide1.jpg') center/cover no-repeat;
    filter: brightness(0.55) saturate(0.75);
    z-index: 0;
  }

  .in-page-shell .page-card {
    position: relative;
    z-index: 1;
    width: min(1140px, calc(100% - 32px));
    max-width: 1140px;
    margin: 20px auto 60px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  }
  .in-page-shell .page-card.home-content-card {
    margin-top: -20px;
    border-radius: 20px;
  }

  /* navigation */
  .in-page-shell nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 16px;
  }

  .in-page-shell .logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--black);
    text-decoration: none;
    font-family: 'DM Serif Display', serif;
    font-style: italic;
  }
  .in-page-shell .logo span { color: var(--green); }

  .in-page-shell nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
  }

  .in-page-shell nav ul li a {
    text-decoration: none;
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
  }
  .in-page-shell nav ul li a.active, .in-page-shell nav ul li a:hover { color: var(--black); font-weight: 600; }

  .in-page-shell .btn-primary {
    background: var(--green);
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
  }
  .in-page-shell .btn-primary:hover { background: var(--green-light); transform: translateY(-1px); }

  .in-page-shell .btn-outline {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .in-page-shell .btn-outline:hover { background: var(--green); color: white; }

  /* Hero */
  .hero {
    position: relative;
    z-index: 1;
    height: 580px;
    width: 100%;
    margin: 0;
    overflow: hidden;
  }
  .hero-slider {
    position: absolute;
    inset: 0;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.8s ease, transform 6s ease;
  }
  .hero-slide.is-active {
    opacity: 1;
    transform: scale(1.12);
  }
  @keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.12); } }
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.64) 0%, rgba(0,0,0,0.44) 46%, rgba(0,0,0,0.18) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 72px 44px 96px;
  }
  .hero-tags { display: flex; gap: 10px; margin-bottom: 18px; opacity: 0; animation: fadeUp 0.6s 0.3s forwards; }
  .tag {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    backdrop-filter: blur(8px);
  }
  .hero-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    max-width: 560px;
    letter-spacing: -1.5px;
    opacity: 0;
    animation: fadeUp 0.7s 0.5s forwards;
  }
  .hero-desc {
    position: static;
    max-width: 520px;
    margin-top: 18px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeUp 0.7s 0.7s forwards;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    opacity: 0;
    animation: fadeUp 0.7s 0.9s forwards;
  }
  .hero-slider-dots {
    position: absolute;
    right: 44px;
    bottom: 30px;
    display: flex;
    gap: 10px;
  }
  .hero-slider-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.38);
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .hero-slider-dot.is-active {
    background: #fff;
    transform: scale(1.15);
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    border-radius: 999px;
    padding-left: 28px;
    padding-right: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-actions .btn-primary {
    background: yellow;
    color: #000;
  }
  .hero-actions .btn-primary:hover {
    background: #f3d400;
    color: #000;
  }
  .hero-actions .btn-outline {
    border-color: yellow;
    color: yellow;
  }
  .hero-actions .btn-outline:hover {
    background: yellow;
    border-color: yellow;
    color: #000 !important;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* sections */
  .in-page-shell section { padding: 72px 44px; background: white; }
  .in-page-shell section.alt { background: var(--gray-light); }

  /* reveal animation */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* about grid */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .about-left h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .about-left p { color: var(--gray-mid); line-height: 1.7; margin-bottom: 28px; }

  .summary-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
  }
  .summary-card {
    background: var(--gray-light);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    border: 1px solid rgba(2, 143, 44, 0.08);
    box-shadow: 0 10px 24px rgba(12, 24, 18, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease;
  }
  .summary-card:hover {
    transform: translateY(-6px);
    background: #f8fffb;
    border-color: rgba(2, 143, 44, 0.2);
    box-shadow: 0 18px 36px rgba(12, 24, 18, 0.12);
  }
  .summary-card .summary-value { font-size: 28px; font-weight: 800; color: var(--green); display: block; }
  .summary-card .summary-label { font-size: 13px; color: var(--gray-mid); }

  /* steps / how it works */
  .how-section {
    background: var(--green);
    border-radius: 20px;
    padding: 52px 44px;
    margin: 0 44px 72px;
  }
  .how-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
  .how-header h2 { font-size: 36px; font-weight: 800; color: white; letter-spacing: -0.8px; }
  .how-header .how-section-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border: 1.5px solid rgba(255,255,255,0.72);
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: none;
    transition: background-color 0.24s ease, color 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
  }
  .how-header .how-section-btn:hover,
  .how-header .how-section-btn:focus-visible {
    background: #ffffff;
    color: var(--green) !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.16);
    outline: none;
  }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .step-card {
    background: white;
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.25s;
  }
  .step-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
  .step-badge {
    background: var(--green-mint);
    color: var(--green);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 18px;
  }
  .step-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
  .step-card p { font-size: 13px; color: var(--gray-mid); line-height: 1.55; }

  /* property style grid for rooms */
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 16px;
  }
  .section-header h2 { font-size: 38px; font-weight: 800; letter-spacing: -1px; }
  .properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .property-card {
    border-radius: 14px;
    overflow: hidden;
    background: white;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s;
  }
  .property-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
  .property-img {
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  .property-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .property-card:hover .property-img img { transform: scale(1.06); }
  .property-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: white;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 30px;
  }
  .property-info { padding: 18px; }
  .property-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
  .property-meta { font-size: 13px; color: var(--gray-mid); margin: 10px 0; }
  .property-price { font-size: 22px; font-weight: 800; color: var(--green); }
  .property-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }

  /* pricing tables */
  .pricing-table-wrapper {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: 16px;
    border: 1px solid #eee;
  }
  .pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
  }
  .pricing-table th, .pricing-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
  }
  .pricing-table th {
    background: var(--gray-light);
    font-weight: 700;
    color: var(--black);
  }
  .pricing-table tr:last-child td { border-bottom: none; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 24px;
  }
  .service-card {
    background: var(--gray-light);
    border-radius: 14px;
    padding: 24px;
    transition: 0.2s;
  }
  .service-card h4 { font-size: 18px; margin-bottom: 12px; }
  .service-card .price { font-weight: 700; color: var(--green); font-size: 18px; margin: 8px 0; }

  /* testimonials */
  .testimonials-section {
    background: url('../images/slider/slide2.jpg') center/cover no-repeat;
    position: relative;
    border-radius: 20px;
    margin: 0 44px 0;
    overflow: hidden;
    padding: 52px 44px;
  }
  .testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
  }
  .testimonials-inner { position: relative; z-index: 1; }
  .testimonials-header h2 { font-size: 34px; font-weight: 800; color: white; letter-spacing: -0.8px; margin-bottom: 32px; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .testimonial-card {
    background: white;
    border-radius: 14px;
    padding: 28px;
  }
  .quote-icon { font-size: 36px; color: var(--green); margin-bottom: 14px; font-family: Georgia; }
  .testimonial-card p { font-size: 14px; line-height: 1.65; color: var(--gray-dark); margin-bottom: 20px; }
  .testimonial-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; margin-right: 12px; }
  .testimonial-author { display: flex; align-items: center; }

  /* faq */
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }
  .faq-left h2 { font-size: 38px; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
  .faq-item { border-bottom: 1px solid #ebebeb; }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
  }
  .faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; transition: 0.2s; }
  .faq-item.open .faq-icon { transform: rotate(180deg); background: var(--green); color: white; }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
  .faq-answer.open { max-height: 200px; padding-bottom: 16px; }
  .faq-answer p { font-size: 14px; color: var(--gray-mid); }

  /* contact section */
  .contact-compact {
    background: var(--gray-light);
    border-radius: 24px;
    margin: 0 44px 44px;
    padding: 40px;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
  .contact-icon { width: 44px; height: 44px; background: var(--green-mint); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 20px; }

  /* stats bar */
  .stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ebebeb;
    border-top: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
  }
  .stat-item { background: white; padding: 28px 32px; text-align: center; }
  .stat-number { font-size: 36px; font-weight: 800; color: var(--black); }
  .stat-label { font-size: 13px; color: var(--gray-mid); }

  .watermark-section { padding: 40px 44px 0; background: white; overflow: hidden; }
  .watermark-text { font-size: 110px; font-weight: 900; color: #f0f0f0; letter-spacing: -4px; white-space: nowrap; font-family: 'DM Serif Display', serif; }

  .cta-section {
    position: relative;
    height: 280px;
    overflow: hidden;
  }
  .cta-bg {
    position: absolute;
    inset: 0;
    background: url('../images/slider/slide3.png') center/cover no-repeat;
    filter: brightness(0.4);
  }
  .cta-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 44px;
  }
  .cta-content h2 { font-size: 48px; font-weight: 800; color: white; letter-spacing: -1.5px; margin-bottom: 16px; }

  .in-page-shell footer {
    background: white;
    padding: 52px 44px 32px;
    border-top: 1px solid #ebebeb;
  }
  .in-page-shell footer .logo {
    display: inline-block;
    margin-bottom: 14px;
    text-decoration: none;
  }
  .in-page-shell footer p {
    color: var(--gray-mid);
    line-height: 1.7;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 44px;
  }
  .footer-col h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    letter-spacing: -0.2px;
  }
  .footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
  }
  .footer-col a {
    color: #5e6773;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
  }
  .footer-col a:hover {
    color: var(--green);
    transform: translateX(3px);
  }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--gray-mid);
    padding-top: 24px;
    border-top: 1px solid #ebebeb;
  }
  .footer-bottom span {
    color: var(--gray-mid);
  }

  @media (max-width: 768px) {
    .in-page-shell .page-card.home-content-card {
      margin-top: -16px;
      border-radius: 16px;
    }
    .hero {
      height: 500px;
    }
    .hero-content {
      justify-content: flex-end;
      padding: 48px 24px 84px;
    }
    .hero-title { font-size: 36px; }
    .hero-desc {
      display: block;
      max-width: 100%;
      font-size: 14px;
      line-height: 1.6;
    }
    .hero-slider-dots {
      right: 24px;
      bottom: 22px;
    }
    .about-grid, .faq-grid, .contact-grid, .footer-grid, .properties-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .how-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
    .in-page-shell section { padding: 48px 24px; }
    .how-section, .testimonials-section { margin: 0 24px 48px; padding: 32px 24px; }
    .stats-bar { flex-wrap: wrap; grid-template-columns: 1fr 1fr; }
    .in-page-shell nav { padding: 16px 24px; }
  }

  @media (max-width: 576px) {
    .in-page-shell .page-card {
      width: min(100% - 20px, 1140px);
      margin-bottom: 36px;
    }

    .in-page-shell .page-card.home-content-card {
      margin-top: -14px;
      border-radius: 14px;
    }
    .hero {
      height: 460px;
    }
    .hero-content {
      justify-content: flex-start;
      padding: 72px 18px 58px;
    }
    .hero-tags {
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }
    .hero-title {
      font-size: clamp(1.55rem, 6.5vw, 2rem);
      line-height: 1.12;
      max-width: 100%;
      letter-spacing: -0.8px;
    }
    .tag {
      padding: 5px 12px;
      font-size: 11px;
    }
    .hero-desc {
      margin-top: 14px;
      font-size: 13px;
      line-height: 1.5;
    }
    .hero-actions {
      width: 100%;
      gap: 10px;
      margin-top: 18px;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
      width: 100%;
      min-height: 44px;
      padding-left: 18px;
      padding-right: 18px;
      font-size: 13px;
    }
    .hero-slider-dots {
      right: 18px;
      bottom: 16px;
      gap: 8px;
    }
    .hero-slider-dot {
      width: 10px;
      height: 10px;
    }
    .how-section {
      margin: 0 16px 36px;
      padding: 28px 18px;
      border-radius: 18px;
    }
    .how-header {
      margin-bottom: 24px;
    }
    .how-header h2 {
      font-size: 28px;
      line-height: 1.2;
    }
    .how-header .btn-outline {
      width: 100%;
      justify-content: center;
    }
    .steps-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }
    .step-card {
      padding: 20px 18px;
    }
  }

  @media (max-width: 400px) {
    .hero {
      height: 440px;
    }
    .hero-content {
      justify-content: flex-start;
      padding: 64px 16px 52px;
    }
    .hero-title {
      font-size: 1.4rem;
      line-height: 1.1;
    }
    .hero-desc {
      margin-top: 12px;
      font-size: 12px;
      line-height: 1.45;
    }
    .hero-actions {
      margin-top: 16px;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
      min-height: 42px;
      font-size: 12px;
    }
    .how-section {
      margin: 0 12px 32px;
      padding: 24px 14px;
    }
    .how-header h2 {
      font-size: 24px;
    }
  }

  /* shared inner-page compatibility */
  .in-page-shell--shared .page-bg {
    background-image: url('../images/slider/slide1.jpg');
  }

  .in-page-shell--shared .page-card {
    margin-top: 24px;
    margin-bottom: 60px;
  }

  .in-page-shell--shared .page-header {
    padding: 56px 44px 28px;
    background: white;
    border-bottom: 1px solid #f0f0f0;
  }

  .in-page-shell--shared .page-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
    color: var(--black);
  }

  .in-page-shell--shared .page-subtitle {
    max-width: 720px;
    margin: 0 auto;
    color: var(--gray-mid);
    line-height: 1.7;
  }

  .in-page-shell--shared .container {
    width: 100%;
    max-width: 1140px;
  }

  .in-page-shell--shared section,
  .in-page-shell--shared main > section {
    padding: 56px 44px;
    background: white;
  }

  .in-page-shell--shared .showcase-section,
  .in-page-shell--shared .events-section,
  .in-page-shell--shared .info-section,
  .in-page-shell--shared .about-section-block,
  .in-page-shell--shared .about-metrics {
    background: white;
  }

  .in-page-shell--shared .section-kicker,
  .in-page-shell--shared .summary-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
  }

  .in-page-shell--shared .section-title,
  .in-page-shell--shared .topic-heading,
  .in-page-shell--shared .display-5,
  .in-page-shell--shared .heading-green,
  .in-page-shell--shared h2 {
    color: var(--black);
    letter-spacing: -0.8px;
  }

  .in-page-shell--shared .topic-heading,
  .in-page-shell--shared .heading-green,
  .in-page-shell--shared .section-head h2,
  .in-page-shell--shared .display-5 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    text-shadow: none;
  }

  .in-page-shell--shared .section-subtitle,
  .in-page-shell--shared .lead,
  .in-page-shell--shared p {
    color: var(--gray-mid);
    line-height: 1.7;
  }

  .in-page-shell--shared .section-head,
  .in-page-shell--shared .section-header {
    margin-bottom: 32px;
  }

  .in-page-shell--shared .btn,
  .in-page-shell--shared .btn-primary-custom,
  .in-page-shell--shared .btn-outline-custom {
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0;
    text-decoration: none;
  }

  .in-page-shell--shared .btn-primary-custom {
    background: var(--green);
    color: white;
    box-shadow: none;
    padding: 12px 22px;
  }

  .in-page-shell--shared .btn-primary-custom:hover {
    background: var(--green-light);
    color: #000;
    transform: translateY(-1px);
    box-shadow: none;
  }

  .in-page-shell--shared .btn-outline-custom {
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
    padding: 11px 22px;
  }

  .in-page-shell--shared .btn-outline-custom:hover {
    background: var(--green);
    color: white;
    transform: translateY(-1px);
    box-shadow: none;
  }

  .in-page-shell--shared .showcase-card,
  .in-page-shell--shared .info-card,
  .in-page-shell--shared .table-card,
  .in-page-shell--shared .event-card,
  .in-page-shell--shared .about-summary,
  .in-page-shell--shared .about-overview-copy,
  .in-page-shell--shared .about-hall-pricing,
  .in-page-shell--shared .about-resource-panel,
  .in-page-shell--shared .about-contact-panel,
  .in-page-shell--shared .about-service-card,
  .in-page-shell--shared .about-price-card {
    background: white;
    border-radius: 14px;
    border: 1px solid #ededed;
    box-shadow: var(--card-shadow);
  }

  .in-page-shell--shared .showcase-card,
  .in-page-shell--shared .info-card,
  .in-page-shell--shared .table-card {
    overflow: hidden;
  }

  .in-page-shell--shared .table-card,
  .in-page-shell--shared .pricing-table-wrapper,
  .in-page-shell--shared .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .in-page-shell--shared iframe,
  .in-page-shell--shared .map-embed {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .in-page-shell--shared .showcase-content,
  .in-page-shell--shared .info-card,
  .in-page-shell--shared .about-resource-panel,
  .in-page-shell--shared .about-contact-panel,
  .in-page-shell--shared .about-hall-pricing {
    padding: 24px;
  }

  .in-page-shell--shared .contact-form-panel {
    position: relative;
    border-color: rgba(2, 143, 44, 0.12);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  }

  .in-page-shell--shared .contact-form-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--green), #d4a843);
    opacity: 0;
    transition: opacity 220ms ease;
  }

  .in-page-shell--shared .contact-form-panel:hover,
  .in-page-shell--shared .contact-form-panel:focus-within {
    transform: translateY(-4px);
    border-color: rgba(2, 143, 44, 0.24);
    box-shadow: 0 24px 48px rgba(15, 42, 30, 0.12);
  }

  .in-page-shell--shared .contact-form-panel:hover::before,
  .in-page-shell--shared .contact-form-panel:focus-within::before {
    opacity: 1;
  }

  .in-page-shell--shared .contact-section-title,
  .in-page-shell--shared .contact-section-title i {
    color: var(--green);
    transition: color 220ms ease, transform 220ms ease;
  }

  .in-page-shell--shared .contact-form-panel:hover .contact-section-title i,
  .in-page-shell--shared .contact-form-panel:focus-within .contact-section-title i {
    transform: translateY(-1px) scale(1.08);
  }

  .in-page-shell--shared .contact-field-label {
    color: #173224;
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease;
  }

  .in-page-shell--shared #contactForm .contact-reveal:hover .contact-field-label,
  .in-page-shell--shared #contactForm .contact-reveal:focus-within .contact-field-label {
    color: var(--green);
    transform: translateX(2px);
  }

  .in-page-shell--shared .form-control-custom {
    border: 1.5px solid rgba(139, 209, 164, 0.82);
    border-radius: 10px;
    background: #f8fbf9;
    color: #173224;
    padding: 12px 14px;
    outline: 1px solid rgba(194, 235, 207, 0.7);
    outline-offset: 2px;
    transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .in-page-shell--shared .form-control-custom:hover {
    background: #ffffff;
    border-color: rgba(96, 190, 128, 0.92);
    outline-color: rgba(173, 226, 190, 0.9);
    transform: translateY(-1px);
  }

  .in-page-shell--shared .form-control-custom:focus {
    background: #ffffff;
    border-color: var(--green);
    outline-color: rgba(139, 209, 164, 0.95);
    box-shadow: 0 0 0 0.2rem rgba(2, 143, 44, 0.14);
    color: #173224;
  }

  .in-page-shell--shared .contact-form-panel .btn-primary-custom {
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  }

  .in-page-shell--shared .contact-form-panel .btn-primary-custom i {
    transition: transform 180ms ease;
  }

  .in-page-shell--shared .contact-form-panel .btn-primary-custom:hover,
  .in-page-shell--shared .contact-form-panel .btn-primary-custom:focus-visible {
    box-shadow: 0 12px 24px rgba(2, 143, 44, 0.18);
  }

  .in-page-shell--shared .contact-form-panel .btn-primary-custom:hover i,
  .in-page-shell--shared .contact-form-panel .btn-primary-custom:focus-visible i {
    transform: translateX(3px);
  }

  .in-page-shell--shared .contact-info-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    border-color: rgba(2, 143, 44, 0.14);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 249, 0.92)),
      radial-gradient(circle at top right, rgba(212, 168, 67, 0.16), transparent 32%);
  }

  .in-page-shell--shared .contact-info-panel::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--green), #d4a843);
  }

  .in-page-shell--shared .contact-info-panel .contact-section-title {
    margin-bottom: 0 !important;
    padding-top: 4px;
    font-size: 18px;
    letter-spacing: 0;
  }

  .in-page-shell--shared .contact-info-panel .contact-info {
    display: grid;
    gap: 0;
    padding: 2px 0;
  }

  .in-page-shell--shared .contact-info-item {
    padding: 17px 0;
    border-bottom: 1px solid rgba(23, 50, 36, 0.09);
  }

  .in-page-shell--shared .contact-info-item:first-child {
    padding-top: 4px;
  }

  .in-page-shell--shared .contact-info-item:last-child {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .in-page-shell--shared .contact-info-row {
    gap: 14px;
  }

  .in-page-shell--shared .contact-info-row .contact-icon-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    margin-top: 1px;
    border: 1px solid rgba(2, 143, 44, 0.12);
    border-radius: 50%;
    background: rgba(2, 143, 44, 0.08);
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.72);
  }

  .in-page-shell--shared .contact-info-row h6 {
    color: #173224;
    font-size: 14px;
  }

  .in-page-shell--shared .contact-info-row p,
  .in-page-shell--shared .contact-info-row a {
    color: #5f7067;
    line-height: 1.55;
  }

  .in-page-shell--shared .contact-info-row a {
    text-decoration: none;
  }

  .in-page-shell--shared .contact-info-row a:hover,
  .in-page-shell--shared .contact-info-row a:focus-visible {
    color: var(--green);
  }

  .in-page-shell--shared .contact-info-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding: 15px 16px;
    border-radius: 14px;
    background:
      linear-gradient(135deg, #173224, #0b6b2e);
    color: white;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 16px 28px rgba(15, 42, 30, 0.16);
  }

  .in-page-shell--shared .contact-info-note span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .in-page-shell--shared .contact-info-note a {
    color: #c6e7c9;
    text-decoration: none;
    white-space: nowrap;
  }

  .in-page-shell--shared .contact-info-note a:hover,
  .in-page-shell--shared .contact-info-note a:focus-visible {
    color: white;
  }

  .in-page-shell--shared .about-action-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.6fr);
    gap: clamp(16px, 1.8vw, 22px);
    align-items: stretch;
  }

  .in-page-shell--shared .about-action-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: clamp(20px, 2vw, 26px);
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(15, 42, 30, 0.1);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px rgba(15, 42, 30, 0.075);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  }

  .in-page-shell--shared .about-action-card--combined {
    min-width: 0;
  }

  .in-page-shell--shared .about-action-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--green), #d4a843);
  }

  .in-page-shell--shared .about-action-card:hover {
    transform: translateY(-5px);
    border-color: rgba(2, 143, 44, 0.18);
    box-shadow: 0 24px 54px rgba(15, 42, 30, 0.13);
  }

  .in-page-shell--shared .about-action-head {
    padding-bottom: 0;
    margin-bottom: clamp(14px, 1.6vw, 20px);
    border-bottom: 0;
  }

  .in-page-shell--shared .about-action-card .topic-heading {
    max-width: 760px;
    margin: 6px 0 0;
    font-size: clamp(20px, 1.55vw, 25px);
    line-height: 1.12;
  }

  .in-page-shell--shared .about-action-card .section-kicker {
    font-size: 12px;
  }

  .in-page-shell--shared .about-combined-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(14px, 1.5vw, 18px);
    min-width: 0;
  }

  .in-page-shell--shared .about-combined-section {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-top: clamp(12px, 1.3vw, 16px);
    border-top: 1px solid rgba(15, 42, 30, 0.12);
  }

  .in-page-shell--shared .about-combined-section--support {
    padding-left: 0;
    border-left: 0;
  }

  .in-page-shell--shared .about-mini-head {
    margin-bottom: 14px;
    color: #173224;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .in-page-shell--shared .about-resource-links,
  .in-page-shell--shared .about-payment-list {
    display: grid;
    gap: 10px;
    margin-top: 0;
  }

  .in-page-shell--shared .about-resource-links--inline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .in-page-shell--shared .about-resource-link,
  .in-page-shell--shared .about-payment-list .about-contact-address,
  .in-page-shell--shared .about-contact-phone {
    margin: 0;
    padding: 12px 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(15, 42, 30, 0.1);
    background: transparent;
    color: var(--gray-dark);
    line-height: 1.5;
    box-shadow: none;
  }

  .in-page-shell--shared .about-resource-link {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 7px;
    min-height: 76px;
    padding: 14px 16px;
    border: 1px solid rgba(2, 143, 44, 0.18);
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #f3faf5 100%);
    color: #173224;
    text-decoration: none;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(15, 42, 30, 0.07);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
  }

  .in-page-shell--shared .about-resource-link::after {
    content: none;
  }

  .in-page-shell--shared .about-resource-link span,
  .in-page-shell--shared .about-resource-link small {
    min-width: 0;
  }

  .in-page-shell--shared .about-resource-link small {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(2, 143, 44, 0.1);
    color: var(--green);
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .in-page-shell--shared .about-resource-link:hover {
    transform: translateY(-3px);
    border-color: rgba(2, 143, 44, 0.32);
    background: #ffffff;
    color: #173224;
    box-shadow: 0 16px 30px rgba(15, 42, 30, 0.11);
  }

  .in-page-shell--shared .about-resource-link:hover small {
    background: var(--green);
    color: white;
  }

  .in-page-shell--shared .about-payment-list .about-contact-address strong,
  .in-page-shell--shared .about-contact-phone strong,
  .in-page-shell--shared .about-contact-phone span {
    display: block;
  }

  .in-page-shell--shared .about-payment-list .about-contact-address strong,
  .in-page-shell--shared .about-contact-phone strong {
    margin-bottom: 4px;
    color: #173224;
  }

  .in-page-shell--shared .about-action-card--payment .about-payment-list .about-contact-address {
    position: relative;
    padding-left: 0;
  }

  .in-page-shell--shared .about-contact-name {
    margin: 0;
    color: #173224;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
  }

  .in-page-shell--shared .about-support-grid {
    display: grid;
    grid-template-columns: minmax(160px, 0.82fr) minmax(240px, 1.18fr) minmax(150px, 0.7fr);
    gap: clamp(14px, 1.6vw, 22px);
    align-items: start;
  }

  .in-page-shell--shared .about-support-label {
    display: block;
    margin-bottom: 6px;
    color: var(--gray-mid);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .in-page-shell--shared .about-support-grid .about-contact-address {
    margin-bottom: 0;
    line-height: 1.55;
  }

  .in-page-shell--shared .about-officer-profile {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 14px 0 12px;
  }

  .in-page-shell--shared .about-officer-photo {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    border: 2px solid #eef5f0;
    object-fit: cover;
    background: #f8fbf9;
  }

  .in-page-shell--shared .about-contact-role {
    margin: 4px 0 0;
    color: var(--gray-mid);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }

  .in-page-shell--shared .contact-officer-container {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(18px, 2.5vw, 28px);
    border-radius: 22px;
    background:
      linear-gradient(135deg, rgba(15, 42, 30, 0.74), rgba(15, 81, 50, 0.46)),
      url("../images/7.jpg") center/cover no-repeat;
  }

  .in-page-shell--shared .contact-officer-section {
    padding-right: 0;
    padding-left: 0;
  }

  .in-page-shell--shared .contact-officer-container::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(212, 168, 67, 0.14));
  }

  .in-page-shell--shared .contact-officer-container .about-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
    align-items: stretch;
    width: min(100%, 1088px);
    margin-inline: auto;
  }

  .in-page-shell--shared .contact-officer-container .about-contact-panel {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
  }

  .in-page-shell--shared .contact-officer-container .contact-officer-card {
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  }

  .in-page-shell--shared .contact-officer-container .contact-officer-card .about-officer-photo {
    transition: transform 220ms ease, border-color 220ms ease;
  }

  .in-page-shell--shared .contact-officer-container .contact-officer-card:hover,
  .in-page-shell--shared .contact-officer-container .contact-officer-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(13, 125, 57, 0.26);
    box-shadow: 0 24px 44px rgba(15, 42, 30, 0.14);
  }

  .in-page-shell--shared .contact-officer-container .contact-officer-card:hover .about-officer-photo,
  .in-page-shell--shared .contact-officer-container .contact-officer-card:focus-within .about-officer-photo {
    transform: scale(1.06);
    border-color: rgba(13, 125, 57, 0.34);
  }

  .in-page-shell--shared .contact-officer-container .topic-heading,
  .in-page-shell--shared .contact-officer-container .about-contact-name,
  .in-page-shell--shared .contact-officer-container .about-contact-role,
  .in-page-shell--shared .contact-officer-container .about-contact-address {
    overflow-wrap: break-word;
  }

  .in-page-shell--shared .contact-officer-container .about-contact-address {
    margin-bottom: 18px;
  }

  .in-page-shell--shared .contact-officer-container .about-contact-actions {
    margin-top: auto;
  }

  .in-page-shell--shared .contact-officer-container .about-contact-actions .btn {
    min-width: 0;
    white-space: normal;
    text-align: center;
  }

  .in-page-shell--shared .about-contact-phone {
    margin-top: 0;
    margin-bottom: 0;
    color: #173224;
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 800;
    letter-spacing: 0;
  }

  .in-page-shell--shared .about-contact-phone span {
    margin-top: 2px;
    color: var(--gray-mid);
    font-size: 14px;
    font-weight: 700;
  }

  .in-page-shell--shared .about-action-card .about-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
  }

  .in-page-shell--shared .about-action-card .about-contact-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .in-page-shell--shared .about-action-card--combined .about-contact-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: auto;
    padding-top: 16px;
  }

  .in-page-shell--shared .about-hall-table-card {
    margin-top: 24px;
    border: 1px solid #e5ece7;
    border-radius: 14px;
    overflow: hidden;
    background: white;
    box-shadow: 0 18px 38px rgba(15, 42, 30, 0.1);
  }

  .in-page-shell--shared .about-hall-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
  }

  .in-page-shell--shared .about-hall-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .in-page-shell--shared .about-hall-table thead th {
    padding: 16px 18px;
    background: linear-gradient(135deg, #163328 0%, #214537 100%);
    color: white;
    border: 0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-align: left;
    text-transform: uppercase;
  }

  .in-page-shell--shared .about-hall-table thead th:first-child {
    width: 32%;
  }

  .in-page-shell--shared .about-hall-table thead th:nth-child(2) {
    width: 14%;
  }

  .in-page-shell--shared .about-hall-table tbody th,
  .in-page-shell--shared .about-hall-table tbody td {
    padding: 16px 18px;
    border-top: 1px solid #eaf0ec;
    color: var(--black);
    font-size: 15px;
    line-height: 1.45;
    vertical-align: middle;
  }

  .in-page-shell--shared .about-hall-table tbody th {
    color: #173224;
    font-weight: 800;
  }

  .in-page-shell--shared .about-hall-table tbody tr:nth-child(even) {
    background: #f5f9f6;
  }

  .in-page-shell--shared .about-hall-table tbody tr:hover {
    background: rgba(11, 107, 46, 0.07);
  }

  .in-page-shell--shared .about-hall-capacity {
    display: inline-flex;
    width: fit-content;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(46, 94, 122, 0.1);
    border: 1px solid rgba(46, 94, 122, 0.16);
    color: #2e5e7a;
    font-size: 13px;
    font-weight: 800;
  }

  .in-page-shell--shared .about-hall-table strong {
    color: var(--green);
    font-weight: 800;
  }

  .in-page-shell--shared .about-hall-muted {
    color: #8b5e12;
    font-weight: 700;
  }

  .in-page-shell--shared .overview-grid,
  .in-page-shell--shared .about-grid,
  .in-page-shell--shared .about-overview,
  .in-page-shell--shared .contact-grid,
  .in-page-shell--shared .about-contact-grid,
  .in-page-shell--shared .about-pricing-layout,
  .in-page-shell--shared .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }

  .in-page-shell--shared .about-overview {
    position: relative;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    grid-template-rows: auto 1fr;
    gap: 24px 28px;
    align-items: stretch;
    padding: 32px;
    overflow: hidden;
  }

  .in-page-shell--shared .about-overview-copy {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: stretch;
    margin: 0;
    padding: 24px;
    max-width: none;
  }

  .in-page-shell--shared .about-overview-stage {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    gap: 18px 28px;
    align-items: end;
  }

  .in-page-shell--shared .about-overview-media {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    min-height: 100%;
  }

  .in-page-shell--shared .about-overview-image-card {
    height: min(420px, 100%);
    min-height: 320px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
  }

  .in-page-shell--shared .about-overview-image-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center bottom;
    display: block;
  }

  .in-page-shell--shared .about-overview-layout {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-content: start;
  }

  .in-page-shell--shared .about-overview-intro-card {
    grid-column: 1 / -1;
    padding: 24px;
  }

  .in-page-shell--shared .about-overview .about-overview-points {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }

  .in-page-shell--shared .about-overview-point {
    position: relative;
    min-height: 150px;
    padding: 22px;
    overflow: hidden;
  }

  .in-page-shell--shared .about-overview-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), #b7d64b);
  }

  .in-page-shell--shared .about-overview-point strong {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-size: 18px;
    line-height: 1.25;
  }

  .in-page-shell--shared .about-overview-point span {
    display: block;
    color: var(--gray-mid);
    font-size: 15px;
    line-height: 1.65;
  }

  .in-page-shell--shared .properties-grid,
  .in-page-shell--shared .events-grid,
  .in-page-shell--shared .about-service-grid,
  .in-page-shell--shared .about-pricing-cards,
  .in-page-shell--shared .about-hall-rate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .in-page-shell--shared .summary-stats,
  .in-page-shell--shared .about-metrics-grid,
  .in-page-shell--shared .about-overview-points,
  .in-page-shell--shared .about-hall-rate-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .in-page-shell--shared .summary-card,
  .in-page-shell--shared .about-metric-card,
  .in-page-shell--shared .about-overview-point,
  .in-page-shell--shared .about-hall-rate-value {
    background: var(--gray-light);
    border: 1px solid #efefef;
    border-radius: 14px;
    box-shadow: none;
  }

  .in-page-shell--shared .summary-card,
  .in-page-shell--shared .about-overview-point,
  .in-page-shell--shared .about-hall-rate-value {
    padding: 16px;
  }

  .in-page-shell--shared .about-overview .about-overview-point {
    padding: 22px;
  }

  .in-page-shell--shared .summary-card:hover,
  .in-page-shell--shared .about-service-card:hover {
    transform: translateY(-4px);
  }

  .in-page-shell--shared .testimonials-grid .about-service-card {
    display: flex;
    min-height: 100%;
    overflow: hidden;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .in-page-shell--shared .testimonials-grid .about-service-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--green), #d4a843);
    opacity: 0;
    transition: opacity 0.25s ease;
  }

  .in-page-shell--shared .testimonials-grid .about-service-card:hover,
  .in-page-shell--shared .testimonials-grid .about-service-card:focus-within {
    transform: translateY(-7px);
    border-color: rgba(2, 143, 44, 0.26);
    box-shadow: 0 24px 44px rgba(15, 42, 30, 0.15);
  }

  .in-page-shell--shared .testimonials-grid .about-service-card:hover::before,
  .in-page-shell--shared .testimonials-grid .about-service-card:focus-within::before {
    opacity: 1;
  }

  .in-page-shell--shared .testimonials-grid .about-service-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    min-height: 210px;
    padding: clamp(22px, 2.4vw, 32px);
  }

  .in-page-shell--shared .testimonials-grid .about-service-body h3 {
    margin: 0 0 18px;
    color: #173224;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .in-page-shell--shared .testimonials-grid .about-service-card:hover h3,
  .in-page-shell--shared .testimonials-grid .about-service-card:focus-within h3 {
    color: var(--green);
    transform: translateX(2px);
  }

  .in-page-shell--shared .testimonials-grid .about-price-foreign {
    margin: 0 0 8px;
    color: var(--green);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    transition: color 0.25s ease;
  }

  .in-page-shell--shared .testimonials-grid .about-service-card:hover .about-price-foreign,
  .in-page-shell--shared .testimonials-grid .about-service-card:focus-within .about-price-foreign {
    color: #0f5132;
  }

  .in-page-shell--shared .testimonials-grid .about-price-note {
    margin: 18px 0 0;
    padding-top: 16px;
    border-top: 1px solid #e8eee9;
    color: var(--gray-mid);
    font-size: 15px;
    line-height: 1.65;
  }

  .in-page-shell--shared .testimonials-grid .about-service-body--catering h3 {
    margin-bottom: 14px;
  }

  .in-page-shell--shared .testimonials-grid .about-service-body--catering .about-price-note {
    margin-top: 12px;
    padding-top: 12px;
    line-height: 1.45;
  }

  .in-page-shell--shared .about-service-download {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 12px;
    padding: 9px 11px;
    border: 1px solid #e8eee9;
    border-radius: 8px;
    color: #173224;
    background: #f8fbf9;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  .in-page-shell--shared .about-service-download::after {
    content: "\2197";
    color: #b88a44;
    flex: 0 0 auto;
    font-size: 0.9rem;
  }

  .in-page-shell--shared .about-service-download:hover {
    transform: translateY(-1px);
    border-color: rgba(11, 107, 46, 0.24);
    background: #eef7f1;
    color: #173224;
  }

  .in-page-shell--shared .summary-header {
    margin-bottom: 18px;
  }

  .in-page-shell--shared .summary-intro {
    color: var(--gray-mid);
    font-size: 14px;
    line-height: 1.7;
    margin: 10px 0 0;
    max-width: 54ch;
  }

  .in-page-shell--shared .about-summary {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .in-page-shell--shared .summary-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .in-page-shell--shared .summary-card {
    padding: 14px 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .in-page-shell--shared .summary-card .summary-value {
    font-size: 22px;
    line-height: 1.05;
    margin-bottom: 4px;
  }

  .in-page-shell--shared .summary-card .summary-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .in-page-shell--shared .summary-card .summary-note {
    display: block;
    font-size: 12px;
    line-height: 1.45;
  }

  .in-page-shell--shared .summary-value,
  .in-page-shell--shared .about-price-value,
  .in-page-shell--shared .about-metric-value,
  .in-page-shell--shared .price-tag,
  .in-page-shell--shared .showcase-price {
    color: var(--green);
    text-shadow: none;
  }

  .in-page-shell--shared .about-price-foreign {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 700;
    margin: 8px 0 0;
  }

  .in-page-shell--shared .about-price-note {
    color: var(--gray-mid);
    font-size: 14px;
    line-height: 1.65;
    margin: 10px 0 0;
  }

  .in-page-shell--shared .room-slider,
  .in-page-shell--shared .property-img,
  .in-page-shell--shared .about-service-image {
    border-radius: 14px 14px 0 0;
    overflow: hidden;
  }

  .rooms-page .in-page-shell--shared .showcase-card {
    height: 100%;
  }

  .rooms-page .in-page-shell--shared .room-slider {
    width: 100%;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
    background: #eef4ef;
  }

  .rooms-page .in-page-shell--shared .room-slider .carousel-inner,
  .rooms-page .in-page-shell--shared .room-slider .carousel-item {
    width: 100%;
    height: 100%;
  }

  .rooms-page .in-page-shell--shared .room-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .halls-page .in-page-shell--shared #halls .showcase-card {
    height: 100%;
  }

  .halls-page .in-page-shell--shared #halls .room-slider {
    width: 100%;
    height: 260px;
    min-height: 260px;
    max-height: 260px;
    background: #eef4ef;
  }

  .halls-page .in-page-shell--shared #halls .room-slider .carousel-inner,
  .halls-page .in-page-shell--shared #halls .room-slider .carousel-item,
  .halls-page .in-page-shell--shared #halls .room-slider .image-container {
    width: 100%;
    height: 100%;
  }

  .halls-page .in-page-shell--shared #halls .room-slider .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .in-page-shell--shared .rooms-hero,
  .in-page-shell--shared .about-banner,
  .in-page-shell--shared .contact-intro {
    padding: 56px 44px;
  }

  .in-page-shell--shared .rooms-hero-glass,
  .in-page-shell--shared .about-banner-glass {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 36px;
    border: 1px solid #efefef;
    height: 100%;
  }

  .in-page-shell--shared .rooms-hero-title,
  .in-page-shell--shared .about-banner-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 16px;
  }

  .in-page-shell--shared .rooms-hero-subtitle,
  .in-page-shell--shared .banner-intro {
    color: var(--gray-mid) !important;
    max-width: 720px;
  }

  .in-page-shell--shared .accommodation-overview {
    padding: 56px 44px;
  }

  .rooms-page .in-page-shell--shared .overview-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    height: 100%;
  }

  .rooms-page .in-page-shell--shared .overview-grid {
    align-items: stretch;
  }

  .rooms-page .in-page-shell--shared .overview-content p {
    margin-bottom: 0;
  }

  .rooms-page .in-page-shell--shared .overview-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 8px;
  }

  .rooms-page .in-page-shell--shared .overview-stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 118px;
    padding: 18px 14px;
    text-align: center;
    background: white;
    border: 1px solid #e8eee9;
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(15, 42, 30, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .rooms-page .in-page-shell--shared .overview-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(2, 143, 44, 0.18);
    box-shadow: 0 18px 34px rgba(15, 42, 30, 0.12);
  }

  .rooms-page .in-page-shell--shared .overview-stat-card .stat-number {
    color: var(--green);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
  }

  .rooms-page .in-page-shell--shared .overview-stat-card .stat-label {
    color: var(--gray-dark);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }

  .in-page-shell--shared .overview-image {
    min-height: 320px;
    border-radius: 16px;
    background: url('../images/Ai_1.png') center/cover no-repeat;
  }

  .rooms-page .in-page-shell--shared .overview-image {
    height: 100%;
    min-height: 100%;
    align-self: stretch;
  }

  .halls-page .in-page-shell--shared .hall-hero-card {
    min-height: clamp(380px, 46vw, 540px);
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: #102418;
  }

  .halls-page .in-page-shell--shared .hall-hero-carousel,
  .halls-page .in-page-shell--shared .hall-hero-carousel .carousel-inner,
  .halls-page .in-page-shell--shared .hall-hero-carousel .carousel-item {
    height: 100%;
    min-height: inherit;
    border-radius: inherit;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transform: scale(1.02);
  }

  .in-page-shell--shared .hero-bg--hall-1 { background-image: url('../images/slider/slideh1.jpg'); }
  .in-page-shell--shared .hero-bg--hall-2 { background-image: url('../images/n_2.jpg'); }
  .in-page-shell--shared .hero-bg--hall-3 { background-image: url('../images/new_conf1.jpg'); }
  .in-page-shell--shared .hero-bg--hall-4 { background-image: url('../images/slider/slideh4.png'); }
  .in-page-shell--shared .hero-bg--hall-5 { background-image: url('../images/slider/slideh3.jpg'); }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(5,20,11,0.42) 42%, rgba(5,20,11,0.78) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: clamp(22px, 3vw, 34px);
  }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-content {
    position: relative;
    z-index: 3;
    width: min(100%, 520px);
    pointer-events: auto;
    color: white;
    text-align: center;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(32px, 4.2vw, 54px);
    font-weight: 800;
    line-height: 1.02;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-subtitle,
  .halls-page .in-page-shell--shared .hall-hero-card .hero-content p {
    max-width: 46ch;
    margin: 12px auto 0;
    color: rgba(255,255,255,0.88);
    font-size: 16px;
    line-height: 1.55;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-feature-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-feature-strip span {
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.13);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
    font-size: 12px;
    font-weight: 700;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .cta-buttons {
    gap: 10px;
    margin-top: 18px;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .btn {
    margin: 0;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-slider-indicator {
    width: 36px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.35);
    transition: width 0.22s ease, background 0.22s ease;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .hero-slider-indicator.active {
    width: 52px;
    background: #f7c948;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .carousel-control-prev,
  .halls-page .in-page-shell--shared .hall-hero-card .carousel-control-next {
    z-index: 4;
    top: 50%;
    bottom: auto;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(10, 28, 16, 0.58);
    border: 1px solid rgba(255,255,255,0.2);
    transform: translateY(-50%);
    opacity: 1;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .carousel-control-prev {
    left: 14px;
  }

  .halls-page .in-page-shell--shared .hall-hero-card .carousel-control-next {
    right: 14px;
  }

  .in-page-shell--shared .list-check {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
  }

  .in-page-shell--shared .list-check li {
    color: var(--gray-dark);
    padding-left: 18px;
    position: relative;
  }

  .in-page-shell--shared .list-check li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--green);
  }

  .in-page-shell--shared .note-box {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 14px 16px;
  }

  .in-page-shell--shared .note-box--alert {
    border-left: 4px solid var(--green);
  }

  .in-page-shell--shared .event-gallery-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    display: block;
  }

  .in-page-shell--shared .summary-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(2, 143, 44, 0.08);
    color: var(--green);
    margin-bottom: 10px;
  }

  .in-page-shell--shared .summary-label,
  .in-page-shell--shared .summary-note,
  .in-page-shell--shared .about-hall-rate-label,
  .in-page-shell--shared .about-contact-address {
    color: var(--gray-mid);
  }

  .in-page-shell--shared .summary-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .in-page-shell--shared .summary-pill {
    background: var(--gray-light);
    border-radius: 999px;
    padding: 6px 11px;
    color: var(--gray-dark);
    border: 1px solid #efefef;
    font-size: 12px;
    line-height: 1.35;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  }

  .in-page-shell--shared .summary-pill:hover {
    transform: translateY(-2px);
    background: #f0f7f2;
    border-color: rgba(2, 143, 44, 0.14);
  }

  .in-page-shell--shared .contact-intro {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #f3fbf5;
    border-radius: 28px;
    border: 1px solid rgba(139, 209, 164, 0.5);
    box-shadow: 0 18px 36px rgba(15, 81, 50, 0.08);
    color: #173224;
    text-align: left;
  }

  .in-page-shell--shared .contact-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
      radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), transparent 34%),
      linear-gradient(135deg, #f6fff8 0%, #e9f8ee 54%, #fff8df 100%);
    transform: scale(1.08);
    opacity: 0;
    animation: contactIntroBackgroundIn 900ms ease-out 80ms both;
  }

  .in-page-shell--shared .contact-intro-title,
  .in-page-shell--shared .contact-intro-text {
    color: #173224;
    text-shadow: none;
    will-change: opacity, transform;
  }

  .in-page-shell--shared .contact-intro-title {
    -webkit-text-fill-color: #173224;
    animation: contactIntroTitleIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 320ms both;
  }

  .in-page-shell--shared .contact-intro-text {
    animation: contactIntroTextIn 760ms cubic-bezier(0.22, 1, 0.36, 1) 480ms both;
  }

  .in-page-shell--shared .contact-info {
    background: transparent;
    padding: 0;
  }

  @keyframes contactIntroBackgroundIn {
    from {
      opacity: 0;
      transform: scale(1.08);
      filter: saturate(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
      filter: saturate(1);
    }
  }

  @keyframes contactIntroTitleIn {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes contactIntroTextIn {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .in-page-shell--shared .event-card {
    overflow: hidden;
  }

  .in-page-shell--shared .event-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .in-page-shell--shared .event-body {
    padding: 20px;
  }

  .in-page-shell--shared .event-title a,
  .in-page-shell--shared .event-more,
  .in-page-shell--shared .footer-col a {
    color: var(--black);
    text-decoration: none;
  }

  .in-page-shell--shared .event-more:hover,
  .in-page-shell--shared .footer-col a:hover {
    color: var(--green);
  }

  .in-page-shell--shared footer {
    background: white;
    padding: 52px 44px 32px;
    border-top: 1px solid #ebebeb;
  }

  .in-page-shell--shared .logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .in-page-shell--shared .logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--black);
    font-family: 'DM Serif Display', serif;
    font-style: italic;
  }

  .in-page-shell--shared .logo-text span {
    color: var(--green);
  }

  /* About page entrance motion */
  .about-page .about-motion {
    opacity: 0;
    will-change: opacity, transform;
    transition-property: opacity, transform;
    transition-duration: 760ms;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-page .about-motion.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .about-page .about-banner-glass.about-motion,
  .about-page .how-section.about-motion,
  .about-page .about-hall-pricing.about-motion,
  .about-page .testimonials-section.about-motion,
  .about-page .about-resource-panel.about-motion,
  .about-page .about-contact-panel.about-motion {
    transform: translateY(22px);
  }

  .about-page .about-summary.about-motion {
    transform: translateY(22px);
  }

  .about-page .about-overview-copy.about-motion {
    transform: translateY(18px);
  }

  .about-page .about-overview-intro-card.about-motion {
    transform: translateY(18px);
  }

  .about-page .about-overview-image-card.about-motion {
    transform: translateY(18px);
  }

  .about-page .about-overview-point.about-motion,
  .about-page .step-card.about-motion,
  .about-page .about-service-card.about-motion {
    transform: translateY(18px);
  }

  .about-page .about-hall-table tbody tr.about-motion {
    transform: translateY(14px);
    transition-duration: 620ms;
  }

  .about-page .summary-card,
  .about-page .step-card,
  .about-page .about-overview-point,
  .about-page .about-service-card {
    transition-property: opacity, transform, box-shadow, border-color, background-color;
  }

  .about-page .summary-card:nth-child(2),
  .about-page .about-overview-point:nth-child(2),
  .about-page .step-card:nth-child(2),
  .about-page .about-service-card:nth-child(2),
  .about-page .about-hall-table tbody tr:nth-child(2) {
    transition-delay: 90ms;
  }

  .about-page .summary-card:nth-child(3),
  .about-page .about-overview-point:nth-child(3),
  .about-page .step-card:nth-child(3),
  .about-page .about-service-card:nth-child(3),
  .about-page .about-hall-table tbody tr:nth-child(3) {
    transition-delay: 170ms;
  }

  .about-page .step-card:nth-child(4),
  .about-page .about-hall-table tbody tr:nth-child(4) {
    transition-delay: 250ms;
  }

  .about-page .about-hall-table tbody tr:nth-child(5) {
    transition-delay: 330ms;
  }

  .about-page .about-hall-table tbody tr:nth-child(6) {
    transition-delay: 410ms;
  }

  .about-page .about-motion.is-visible.about-overview-image-card img {
    animation: aboutImageSettle 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  @keyframes aboutImageSettle {
    from {
      transform: scale(1.08);
    }
    to {
      transform: scale(1);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .about-page .about-motion,
    .about-page .about-motion.is-visible.about-overview-image-card img {
      opacity: 1;
      transform: none;
      filter: none;
      clip-path: none;
      animation: none;
      transition: none;
    }
  }

  @media (max-width: 768px) {
    .in-page-shell--shared .page-card {
      width: min(100% - 24px, 1140px);
      margin: 16px auto 42px;
    }

    .in-page-shell--shared .page-header,
    .in-page-shell--shared section,
    .in-page-shell--shared main > section,
    .in-page-shell--shared footer {
      padding: 40px 24px;
    }

    .in-page-shell--shared .page-title,
    .in-page-shell--shared .topic-heading,
    .in-page-shell--shared .heading-green,
    .in-page-shell--shared .section-head h2,
    .in-page-shell--shared .display-5 {
      font-size: 30px;
    }

    .in-page-shell--shared .overview-grid,
    .in-page-shell--shared .about-grid,
    .in-page-shell--shared .about-overview,
    .in-page-shell--shared .contact-grid,
    .in-page-shell--shared .about-contact-grid,
    .in-page-shell--shared .about-pricing-layout,
    .in-page-shell--shared .faq-grid,
    .in-page-shell--shared .properties-grid,
    .in-page-shell--shared .events-grid,
    .in-page-shell--shared .about-service-grid,
    .in-page-shell--shared .about-pricing-cards,
    .in-page-shell--shared .about-hall-rate-grid,
    .in-page-shell--shared .about-metrics-grid,
    .in-page-shell--shared .about-overview-points,
    .in-page-shell--shared .about-hall-rate-values,
    .in-page-shell--shared .footer-grid {
      grid-template-columns: 1fr;
    }

    .in-page-shell--shared .summary-stats {
      grid-template-columns: 1fr;
    }

    .halls-page .in-page-shell--shared .hall-hero-card {
      border-radius: 14px;
    }

    .halls-page .in-page-shell--shared .hall-hero-card .hero-overlay {
      padding: 22px 18px;
    }

    .halls-page .in-page-shell--shared .hall-hero-card .hero-title {
      font-size: clamp(32px, 10vw, 44px);
    }

    .halls-page .in-page-shell--shared .hall-hero-card .hero-subtitle {
      font-size: 15px;
    }

    .halls-page .in-page-shell--shared .hall-hero-card .cta-buttons {
      width: 100%;
    }

    .halls-page .in-page-shell--shared .hall-hero-card .btn {
      width: 100%;
      justify-content: center;
    }

    .halls-page .in-page-shell--shared .hall-hero-card .carousel-control-prev,
    .halls-page .in-page-shell--shared .hall-hero-card .carousel-control-next {
      display: none;
    }

    .in-page-shell--shared .about-action-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .in-page-shell--shared .about-action-card {
      padding: 18px;
    }

    .in-page-shell--shared .about-combined-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .in-page-shell--shared .about-resource-links--inline,
    .in-page-shell--shared .about-support-grid {
      grid-template-columns: 1fr;
    }

    .in-page-shell--shared .about-combined-section {
      padding: 14px;
    }

    .in-page-shell--shared .about-combined-section--support {
      padding-left: 14px;
      border-left: 0;
    }

    .in-page-shell--shared .about-action-card--combined .about-contact-actions {
      grid-template-columns: 1fr;
    }

    .in-page-shell--shared .summary-highlights {
      grid-template-columns: 1fr;
    }

    .in-page-shell--shared .contact-officer-container {
      padding: 18px;
      border-radius: 18px;
    }

    .in-page-shell--shared .contact-officer-container .about-contact-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .in-page-shell--shared .contact-officer-container .about-contact-panel {
      padding: 20px;
    }

    .in-page-shell--shared .contact-officer-container .topic-heading {
      font-size: 26px;
      line-height: 1.18;
    }

    .in-page-shell--shared .contact-officer-container .about-contact-actions {
      display: grid;
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .in-page-shell--shared .contact-officer-container .about-contact-actions .btn {
      width: 100%;
      justify-content: center;
    }

    .in-page-shell--shared .contact-info-note {
      align-items: flex-start;
      flex-direction: column;
    }

    .in-page-shell--shared .map-embed {
      height: 320px;
    }

    .in-page-shell--shared .about-overview {
      padding: 24px;
      gap: 18px;
    }

    .in-page-shell--shared .about-overview-copy,
    .in-page-shell--shared .about-overview-layout,
    .in-page-shell--shared .about-overview-media {
      grid-column: auto;
      grid-row: auto;
    }

    .in-page-shell--shared .about-overview-stage {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .in-page-shell--shared .about-overview-copy,
    .in-page-shell--shared .about-overview-intro-card {
      padding: 20px;
    }

    .in-page-shell--shared .about-overview-layout,
    .in-page-shell--shared .about-overview-points {
      grid-template-columns: 1fr;
    }

    .in-page-shell--shared .about-overview-point,
    .in-page-shell--shared .about-overview-point:nth-child(1),
    .in-page-shell--shared .about-overview-point:nth-child(2),
    .in-page-shell--shared .about-overview-point:nth-child(3) {
      grid-column: auto;
      min-height: auto;
      transform: none;
    }

    .in-page-shell--shared .about-overview-media {
      order: 2;
    }

    .in-page-shell--shared .about-overview-image-card {
      min-height: 260px;
      height: 260px;
    }

    .rooms-page .in-page-shell--shared .overview-stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .rooms-page .in-page-shell--shared .room-slider {
      height: 240px;
      min-height: 240px;
      max-height: 240px;
    }

    .halls-page .in-page-shell--shared #halls .room-slider {
      height: 240px;
      min-height: 240px;
      max-height: 240px;
    }

    .in-page-shell--shared .testimonials-grid .about-service-body {
      min-height: auto;
      padding: 22px;
    }

    .in-page-shell--shared .testimonials-grid .about-service-body h3 {
      margin-bottom: 14px;
      font-size: 20px;
    }

    .in-page-shell--shared .testimonials-grid .about-price-note {
      margin-top: 14px;
      padding-top: 14px;
    }

    .in-page-shell--shared .about-hall-table-card {
      overflow: visible;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
    }

    .in-page-shell--shared .about-hall-table,
    .in-page-shell--shared .about-hall-table tbody,
    .in-page-shell--shared .about-hall-table tr,
    .in-page-shell--shared .about-hall-table th,
    .in-page-shell--shared .about-hall-table td {
      display: block;
      width: 100%;
    }

    .in-page-shell--shared .about-hall-table thead {
      display: none;
    }

    .in-page-shell--shared .about-hall-table tbody tr {
      display: grid;
      grid-template-columns: 1fr;
      gap: 14px;
      margin-bottom: 16px;
      padding: 16px;
      border: 1px solid #e5ece7;
      border-radius: 14px;
      background: white;
      box-shadow: 0 14px 28px rgba(15, 42, 30, 0.08);
    }

    .in-page-shell--shared .about-hall-table tbody tr:nth-child(even),
    .in-page-shell--shared .about-hall-table tbody tr:hover {
      background: white;
    }

    .in-page-shell--shared .about-hall-table tbody th,
    .in-page-shell--shared .about-hall-table tbody td {
      padding: 0;
      border-top: 0;
    }

    .in-page-shell--shared .about-hall-table tbody th {
      padding-bottom: 10px;
      border-bottom: 1px solid #eaf0ec;
    }

    .in-page-shell--shared .about-hall-table tbody th::before,
    .in-page-shell--shared .about-hall-table tbody td::before {
      content: attr(data-label);
      display: block;
      color: var(--gray-mid);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
  }

  @media (max-width: 480px) {
    .in-page-shell--shared .page-card {
      width: min(100% - 16px, 1140px);
      margin-top: 10px;
    }

    .in-page-shell--shared .page-header,
    .in-page-shell--shared section,
    .in-page-shell--shared main > section,
    .in-page-shell--shared footer {
      padding-right: 16px;
      padding-left: 16px;
    }

    .rooms-page .in-page-shell--shared .overview-stats {
      grid-template-columns: 1fr;
    }

    .in-page-shell--shared .contact-officer-container {
      padding: 12px;
      border-radius: 16px;
      margin-inline: 0;
    }

    .in-page-shell--shared .contact-officer-container .about-contact-panel {
      padding: 16px;
      border-radius: 12px;
    }

    .in-page-shell--shared .contact-officer-container .section-kicker {
      font-size: 11px;
    }

    .in-page-shell--shared .contact-officer-container .topic-heading {
      font-size: 23px;
      line-height: 1.2;
    }

    .in-page-shell--shared .about-officer-profile {
      gap: 10px;
      align-items: flex-start;
    }

    .in-page-shell--shared .about-officer-photo {
      width: 44px;
      height: 44px;
      flex-basis: 44px;
    }

    .in-page-shell--shared .contact-officer-container .about-contact-name {
      font-size: 15px;
      line-height: 1.3;
    }

    .in-page-shell--shared .contact-officer-container .about-contact-address {
      font-size: 14px;
      line-height: 1.6;
    }

    .rooms-page .in-page-shell--shared .overview-stat-card {
      min-height: 96px;
      padding: 16px;
    }

    .rooms-page .in-page-shell--shared .room-slider {
      height: 220px;
      min-height: 220px;
      max-height: 220px;
    }

    .halls-page .in-page-shell--shared #halls .room-slider {
      height: 220px;
      min-height: 220px;
      max-height: 220px;
    }

    .in-page-shell--shared .map-embed {
      height: 280px;
    }
  }

  /* Responsive hardening layer for public pages */
  .in-page-shell--shared *,
  .in-page-shell--shared *::before,
  .in-page-shell--shared *::after {
    min-width: 0;
  }

  .in-page-shell--shared img,
  .in-page-shell--shared video,
  .in-page-shell--shared iframe {
    max-width: 100%;
  }

  .in-page-shell--shared .btn,
  .in-page-shell--shared button,
  .in-page-shell--shared input,
  .in-page-shell--shared select,
  .in-page-shell--shared textarea {
    max-width: 100%;
  }

  .in-page-shell--shared .btn,
  .in-page-shell--shared .btn-primary-custom,
  .in-page-shell--shared .btn-outline-custom {
    white-space: normal;
    text-align: center;
  }

  .in-page-shell--shared .container {
    width: min(100%, var(--content-max-width, 1480px));
  }

  .in-page-shell--shared .row {
    min-width: 0;
  }

  @media (max-width: 1199.98px) {
    .in-page-shell--shared .steps-grid,
    .in-page-shell--shared .testimonials-grid,
    .in-page-shell--shared .properties-grid,
    .in-page-shell--shared .services-grid,
    .in-page-shell--shared .pricing-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .in-page-shell--shared .about-resource-links--inline {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .in-page-shell--shared .about-support-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 991.98px) {
    .in-page-shell--shared .about-grid,
    .in-page-shell--shared .overview-grid,
    .in-page-shell--shared .faq-grid,
    .in-page-shell--shared .contact-grid,
    .in-page-shell--shared .footer-grid,
    .in-page-shell--shared .about-action-grid,
    .in-page-shell--shared .about-overview-stage,
    .in-page-shell--shared .contact-officer-container .about-contact-grid {
      grid-template-columns: 1fr;
    }

    .in-page-shell--shared .about-action-card,
    .in-page-shell--shared .about-resource-panel,
    .in-page-shell--shared .about-contact-panel,
    .in-page-shell--shared .showcase-card {
      min-height: auto;
    }

    .in-page-shell--shared .about-action-card .about-contact-actions,
    .in-page-shell--shared .about-action-card--combined .about-contact-actions {
      margin-top: 16px;
    }

    .in-page-shell--shared .hall-hero-card,
    .in-page-shell--shared .rooms-hero,
    .in-page-shell--shared .hero-section {
      min-height: auto;
    }

    .in-page-shell--shared .rooms-hero-content,
    .in-page-shell--shared .hero-content,
    .in-page-shell--shared .hall-hero-card .hero-overlay {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .in-page-shell--shared .steps-grid,
    .in-page-shell--shared .testimonials-grid,
    .in-page-shell--shared .properties-grid,
    .in-page-shell--shared .services-grid,
    .in-page-shell--shared .pricing-grid,
    .in-page-shell--shared .summary-stats,
    .in-page-shell--shared .about-overview-points,
    .in-page-shell--shared .about-resource-links--inline,
    .in-page-shell--shared .about-support-grid,
    .in-page-shell--shared .about-action-card--combined .about-contact-actions {
      grid-template-columns: 1fr;
    }

    .in-page-shell--shared .overview-stats,
    .rooms-page .in-page-shell--shared .overview-stats,
    .in-page-shell--shared .stats-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .in-page-shell--shared .showcase-content,
    .in-page-shell--shared .property-card,
    .in-page-shell--shared .service-card,
    .in-page-shell--shared .testimonial-card {
      overflow-wrap: anywhere;
    }

    .in-page-shell--shared .d-flex:has(.btn),
    .in-page-shell--shared .cta-buttons,
    .in-page-shell--shared .about-banner-actions,
    .in-page-shell--shared .about-contact-actions {
      flex-wrap: wrap;
    }
  }

  @media (max-width: 575.98px) {
    .in-page-shell--shared .page-card {
      width: min(100% - 12px, 1140px);
      border-radius: 16px;
    }

    .in-page-shell--shared .container {
      padding-right: 12px;
      padding-left: 12px;
    }

    .in-page-shell--shared .overview-stats,
    .rooms-page .in-page-shell--shared .overview-stats,
    .in-page-shell--shared .stats-grid {
      grid-template-columns: 1fr;
    }

    .in-page-shell--shared .btn,
    .in-page-shell--shared .btn-primary-custom,
    .in-page-shell--shared .btn-outline-custom,
    .in-page-shell--shared .about-contact-actions .btn,
    .in-page-shell--shared .cta-buttons .btn {
      width: 100%;
      justify-content: center;
    }

    .in-page-shell--shared .about-resource-link {
      min-height: 64px;
      border-radius: 18px;
    }

    .in-page-shell--shared .section-kicker {
      overflow-wrap: anywhere;
    }

    .in-page-shell--shared .contact-info-note a {
      white-space: normal;
      overflow-wrap: anywhere;
    }
  }

  @media (max-width: 380px) {
    .in-page-shell--shared .rooms-hero-title,
    .in-page-shell--shared .hero-title,
    .in-page-shell--shared .hall-hero-card .hero-title,
    .in-page-shell--shared .about-banner-title,
    .in-page-shell--shared .topic-heading {
      overflow-wrap: anywhere;
    }

    .in-page-shell--shared .room-slider .carousel-control-prev,
    .in-page-shell--shared .room-slider .carousel-control-next {
      display: none;
    }
  }
