/* ================================
   HERO
================================ */

/* HERO OVERLAY */
.hn-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hn-hero-content {
    position: relative;
    z-index: 2;
}

/* HERO CTA CARD */
.hn-hero-cta-card {
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* URGENCY */
.hn-hero-urgency {
    margin-top: 6px;
    font-size: 13px;
    color: #FFD166;
    font-weight: 500;
}

/* TRUST BADGES */
.hn-hero-trust {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hn-hero-trust-item {
    font-size: 12px;
    background: rgba(255,255,255,0.14);
    padding: 6px 12px;
    border-radius: 20px;
    color: #fff;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
}

/* ================================
   EXPERIENCE SECTION
================================ */

.hn-exp-section {
    padding-top: 70px;
}

/* HEADER */
.hn-section-head {
    text-align: center;
    margin-bottom: 50px;
}

/* DAY BLOCK */
.hn-exp-block {
    margin-bottom: 60px;
}

/* DAY LABEL */
.hn-exp-day {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #FF5527;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

/* TITLE */
.hn-exp-title {
    font-size: 22px;
    margin-bottom: 22px;
    font-weight: 600;
}

/* GRID */
.hn-exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ITEM */
.hn-exp-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hn-exp-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

/* TIME */
.hn-exp-time {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #999;
    margin-bottom: 6px;
}

/* HIGHLIGHT */
.hn-exp-highlight {
    border-left: 3px solid #FF5527;
    background: #fff9f6;
}

/* EXTRA INFO */
.hn-exp-extra {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hn-exp-extra-item {
    background: #f4f6f8;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #333;
}

/* ================================
   CTA SECTION
================================ */

.hn-cta-box {
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.08);
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

/* TITLE */
.hn-cta-title {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 600;
}

/* SUBTITLE */
.hn-cta-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

/* PRICING */
.hn-cta-pricing {
    margin: 20px 0;
}

.hn-cta-price {
    font-size: 36px;
    font-weight: 700;
    color: #FF5527;
}

/* ================================
   GALLERY SECTION
================================ */

.hn-gallery {
    padding-top: 60px;
}

/* GRID */
.hn-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* ITEM */
.hn-gallery-item {
    overflow: hidden;
    border-radius: 14px;
    position: relative;
    background: #eee;
}

/* IMAGE */
.hn-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease;
}

/* HOVER EFFECT */
.hn-gallery-item:hover img {
    transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {

    .hn-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

}
.hn-cta-price span {
    font-size: 14px;
    color: #777;
    font-weight: 400;
}

.hn-cta-price-note {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

/* POINTS */
.hn-cta-points {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

/* URGENCY */
.hn-cta-urgency {
    margin-top: 12px;
    font-size: 13px;
    color: #d9534f;
    font-weight: 500;
}

/* BUTTON */
.hn-cta-btn-primary {
    margin-top: 20px;
    font-size: 16px;
    padding: 14px;
    background: var(--hn-primary);
    color: white;
}

/* ================================
   ANTI DIY SECTION
================================ */

.hn-anti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.hn-anti-card {
    padding: 24px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* NEGATIVE */
.hn-anti-negative {
    border-top: 4px solid #e0e0e0;
}

/* POSITIVE */
.hn-anti-positive {
    border-top: 4px solid #FF5527;
    background: #fff8f5;
}

/* TITLE */
.hn-anti-title {
    font-size: 18px;
    margin-bottom: 14px;
    font-weight: 600;
}

/* LIST */
.hn-anti-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hn-anti-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

/* CLOSING */
.hn-anti-closing {
    margin-top: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {

    .hn-exp-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hn-exp-title {
        font-size: 18px;
    }

    .hn-cta-box {
        padding: 24px 18px;
    }

    .hn-cta-price {
        font-size: 30px;
    }

    .hn-anti-grid {
        grid-template-columns: 1fr;
    }

    .hn-exp-block {
        margin-bottom: 40px;
    }

}

/* ================================
   GALLERY MODAL
================================ */

.hn-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.hn-gallery-modal.active {
    display: block;
}

/* BACKDROP */
.hn-gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
}

/* CONTENT */
.hn-gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* IMAGE */
#hnGalleryImage {
    max-width: 90%;
    max-height: 85%;
    border-radius: 12px;
}

/* CLOSE */
.hn-gallery-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* NAV */
.hn-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    padding: 10px 14px;
    cursor: pointer;
    border-radius: 50%;
}

.hn-gallery-prev {
    left: 20px;
}

.hn-gallery-next {
    right: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

    #hnGalleryImage {
        max-width: 95%;
        max-height: 75%;
    }

    .hn-gallery-nav {
        font-size: 22px;
    }

}

/* =====================================================
BOOKING MODAL - TAP BASED UI
===================================================== */

.hn-booking-modal{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
}

.hn-booking-modal.active{
    display:block;
}

.hn-booking-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(8,12,18,0.72);
    backdrop-filter:blur(5px);
    -webkit-backdrop-filter:blur(5px);
}

.hn-booking-modal-shell{
    position:relative;
    z-index:2;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

.hn-booking-modal-content{
    position:relative;
    width:min(100%, 470px);
    max-height:90vh;
    overflow-y:auto;
    background:linear-gradient(180deg,#ffffff 0%,#fcfcfd 100%);
    border-radius:28px;
    padding:24px;
    box-shadow:
        0 24px 60px rgba(0,0,0,0.20),
        0 6px 18px rgba(0,0,0,0.06);
    border:1px solid rgba(17,24,39,0.06);
}

/* close */

.hn-booking-close{
    position:absolute;
    top:14px;
    right:14px;
    width:42px;
    height:42px;
    border:0;
    border-radius:999px;
    background:#f3f4f6;
    color:#111827;
    font-size:28px;
    line-height:1;
    cursor:pointer;
    transition:all .18s ease;
}

.hn-booking-close:hover{
    background:#e5e7eb;
    transform:scale(1.04);
}

/* head */

.hn-booking-head{
    padding-right:52px;
    margin-bottom:14px;
}

.hn-booking-head h3{
    margin:0 0 8px;
    font-size:2rem;
    line-height:1.05;
    font-weight:800;
    color:#111827;
    letter-spacing:-0.03em;
}

.hn-booking-head p{
    margin:0;
    color:#6b7280;
    line-height:1.65;
    font-size:1rem;
    max-width:38ch;
}

/* meta row */

.hn-booking-meta{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:18px;
    padding:14px;
    border-radius:22px;
    background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.8),
        0 8px 20px rgba(17,24,39,0.05);
    border:1px solid #edf0f3;
}

.hn-booking-meta span{
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:0 14px;
    border-radius:999px;
    background:#f4f5f7;
    border:1px solid #e7e9ee;
    font-size:.82rem;
    font-weight:700;
    color:#1f2937;
    white-space:nowrap;
}

/* form */

.hn-booking-form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

/* section cards */

.hn-booking-card{
    padding:18px;
    border-radius:24px;
    background:linear-gradient(180deg,#ffffff 0%,#fbfbfc 100%);
    border:1px solid #edf0f4;
    box-shadow:
        0 8px 24px rgba(17,24,39,0.05),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.hn-booking-card-title{
    margin:0 0 16px;
    font-size:1.05rem;
    line-height:1.2;
    font-weight:800;
    color:#111827;
    letter-spacing:-0.02em;
}

.hn-form-group{
    display:flex;
    flex-direction:column;
}

.hn-form-group + .hn-form-group{
    margin-top:16px;
}

.hn-form-group label{
    margin-bottom:8px;
    font-size:.98rem;
    font-weight:700;
    color:#6B7280;
}

.hn-form-group input,
.hn-form-group select{
    height:52px;
    padding:0 16px;
    border:1px solid #d9dfe8;
    border-radius:18px;
    background:#fff;
    font-size:16px;
    color:#111827;
    outline:none;
    transition:border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    appearance:none;
    -webkit-appearance:none;
    box-shadow:0 1px 1px rgba(17,24,39,0.02);
}

.hn-form-group input::placeholder{
    color:#9ca3af;
}

.hn-form-group input:focus,
.hn-form-group select:focus{
    border-color:#ff5527;
    box-shadow:0 0 0 4px rgba(255,85,39,0.10);
}

/* date */
.hn-form-group input[type="date"]{
    padding-right:16px;
}

/* phone row */

.hn-phone-row{
    display:grid;
    grid-template-columns:120px 1fr;
    gap:10px;
}

.hn-phone-row select{
    padding-right:12px;
}

/* seat picker */

.hn-seat-picker{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:10px;
}

.hn-seat-option{
    height:52px;
    border:1px solid #d9dfe8;
    border-radius:18px;
    background:#fff;
    color:#6b7280;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:all .18s ease;
    box-shadow:
        0 2px 8px rgba(17,24,39,0.04),
        inset 0 1px 0 rgba(255,255,255,0.9);
}

.hn-seat-option:hover{
    border-color:#ff5527;
    color:#111827;
    transform:translateY(-1px);
}

.hn-seat-option:focus{
    outline:none;
    border-color:#ff5527;
    box-shadow:0 0 0 4px rgba(255,85,39,0.10);
}

.hn-seat-option.active{
    background:linear-gradient(135deg,#ff9a2f 0%,#ff5527 100%);
    border-color:#ff5527;
    color:#fff;
    box-shadow:
        0 12px 24px rgba(255,85,39,0.22),
        inset 0 1px 0 rgba(255,255,255,0.20);
}

.hn-seat-option-wide{
    grid-column:span 3;
    height:56px;
    font-size:15px;
}

/* help text */

.hn-field-help{
    margin-top:8px;
    font-size:.82rem;
    color:#6b7280;
    line-height:1.5;
}

/* submit */

.hn-booking-submit{
    width:100%;
    height:56px;
    margin-top:2px;
    border:0;
    border-radius:18px;
    background:linear-gradient(135deg,#ff9a2f 0%,#ff5527 100%);
    color:#fff;
    font-size:1.05rem;
    font-weight:800;
    letter-spacing:-0.01em;
    cursor:pointer;
    box-shadow:0 14px 28px rgba(255,85,39,0.22);
    transition:transform .18s ease, box-shadow .18s ease;
}

.hn-booking-submit:hover{
    transform:translateY(-1px);
    box-shadow:0 18px 32px rgba(255,85,39,0.28);
}

.hn-booking-note{
    margin:0;
    font-size:.9rem;
    line-height:1.65;
    color:#6b7280;
}

/* body lock */

body.hn-modal-open{
    overflow:hidden;
}

/* scrollbar */

.hn-booking-modal-content::-webkit-scrollbar{
    width:8px;
}

.hn-booking-modal-content::-webkit-scrollbar-thumb{
    background:#d4d8df;
    border-radius:999px;
}

/* mobile */

@media (max-width: 768px){

    .hn-booking-modal-shell{
        align-items:flex-end;
        padding:0;
    }

    .hn-booking-modal-content{
        width:100%;
        max-height:92vh;
        border-radius:28px 28px 0 0;
        padding:22px 16px 18px;
        animation:hnSlideUp .24s ease;
    }

    .hn-booking-head{
        padding-right:46px;
        margin-bottom:12px;
    }

    .hn-booking-head h3{
        font-size:1.9rem;
    }

    .hn-booking-head p{
        font-size:.98rem;
        max-width:none;
    }

    .hn-booking-meta{
        padding:12px;
        gap:8px;
        margin-bottom:16px;
        border-radius:20px;
    }

    .hn-booking-meta span{
        min-height:36px;
        padding:0 12px;
        font-size:.8rem;
    }

    .hn-booking-card{
        padding:16px;
        border-radius:22px;
    }

    .hn-booking-card-title{
        margin-bottom:14px;
        font-size:1rem;
    }

    .hn-form-group label{
        font-size:.95rem;
    }

    .hn-form-group input,
    .hn-form-group select{
        height:50px;
        font-size:16px;
        border-radius:16px;
    }

    .hn-phone-row{
        grid-template-columns:112px 1fr;
        gap:8px;
    }

    .hn-seat-picker{
        grid-template-columns:repeat(3, 1fr);
        gap:8px;
    }

    .hn-seat-option{
        height:50px;
        font-size:16px;
        border-radius:16px;
    }

    .hn-seat-option-wide{
        height:54px;
        font-size:15px;
    }

    .hn-booking-submit{
        height:54px;
        border-radius:16px;
        font-size:1rem;
    }

    .hn-booking-note{
        font-size:.88rem;
    }
}

@media (max-width: 420px){

    .hn-booking-head h3{
        font-size:1.75rem;
    }

    .hn-phone-row{
        grid-template-columns:104px 1fr;
    }

    .hn-seat-option{
        font-size:15px;
    }

    .hn-seat-option-wide{
        font-size:14px;
    }
}

@keyframes hnSlideUp{
    from{
        transform:translateY(28px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}