/* ===== GLOBAL STYLES ===== */
:root{
    --primary:#8f4b24;
    --primary-dark:#6f391b;
    --accent:#e8b07a;
    --bg:#fdfaf4;
    --surface:#ffffff;
    --surface-2:#f8f4ef;
    --text:#1f2f27;
    --muted:#6b7280;
    --border:rgba(31,47,39,0.08);
    --shadow:0 18px 45px rgba(0,0,0,0.08);
    --shadow-soft:0 8px 24px rgba(0,0,0,0.06);
    --radius:18px;
    --radius-lg:28px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    scroll-margin-top:100px;
}

/* ===== NAVBAR ===== */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(12px);
    z-index:1000;
    border-bottom:1px solid rgba(0,0,0,0.05);
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:82px;
    padding:12px 20px;
    gap:20px;
}

.logo a{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    height:56px;
    width:auto;
}

.logo span{
    font-family:'Segoe UI', Arial, sans-serif;
    font-size:1.65rem;
    font-weight:800;
    color:var(--text);
    letter-spacing:0.2px;
}

.nav-menu{
    list-style:none;
    display:flex;
    gap:28px;
}

.nav-menu li a{
    color:#2f2f2f;
    font-weight:600;
    transition:0.3s ease;
    position:relative;
}

.nav-menu li a:hover{
    color:var(--primary);
}

.nav-menu li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-7px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:0.3s ease;
}

.nav-menu li a:hover::after{
    width:100%;
}

.menu-toggle{
    display:none;
    font-size:2rem;
    cursor:pointer;
    user-select:none;
}

/* ===== HERO SECTION ===== */
.hero{
    position:relative;
    margin-top:96px;
    padding:0 0 28px;
}

.hero-wrapper{
    position:relative;
    width:100%;
    min-height:700px;
    overflow:hidden;
    border-radius:28px;
    box-shadow:var(--shadow);
}

.hero-img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(0,0,0,0.66) 0%, rgba(0,0,0,0.42) 45%, rgba(0,0,0,0.20) 100%);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    min-height:700px;
    max-width:760px;
    padding:90px 20px 80px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:left;
}

.hero-badge{
    display:inline-block;
    align-self:flex-start;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.22);
    font-size:0.92rem;
    margin-bottom:20px;
    backdrop-filter:blur(8px);
}

.hero h1{
    font-size:clamp(2.5rem, 5vw, 4.7rem);
    line-height:1.05;
    margin-bottom:18px;
    font-weight:800;
}

.hero p{
    font-size:1.08rem;
    margin-bottom:28px;
    line-height:1.7;
    max-width:620px;
    color:rgba(255,255,255,0.92);
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:34px;
}

.btn-primary,
.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 28px;
    border-radius:999px;
    font-weight:700;
    transition:all 0.3s ease;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
    box-shadow:0 10px 24px rgba(143,75,36,0.28);
}

.btn-primary:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(143,75,36,0.34);
}

.btn-secondary{
    background:rgba(255,255,255,0.12);
    color:#fff;
    border:1px solid rgba(255,255,255,0.22);
    backdrop-filter:blur(8px);
}

.btn-secondary:hover{
    background:rgba(255,255,255,0.18);
    transform:translateY(-2px);
}

.hero-stats{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.stat-box{
    min-width:170px;
    padding:18px 20px;
    border-radius:18px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.14);
    backdrop-filter:blur(10px);
}

.stat-box strong{
    display:block;
    font-size:1.15rem;
    margin-bottom:4px;
}

.stat-box span{
    font-size:0.93rem;
    color:rgba(255,255,255,0.9);
}

/* ===== SECTION HEADINGS ===== */
.section-heading{
    max-width:760px;
    margin:0 auto 42px;
    text-align:center;
}

.section-label{
    display:inline-block;
    margin-bottom:10px;
    color:var(--primary);
    font-weight:800;
    letter-spacing:0.08em;
    text-transform:uppercase;
    font-size:0.82rem;
}

.section-heading h2{
    font-size:clamp(2rem, 4vw, 3rem);
    line-height:1.1;
    margin-bottom:12px;
    color:var(--text);
}

.section-heading p{
    color:var(--muted);
    font-size:1rem;
}

/* ===== FEATURES ===== */
.features{
    padding:90px 0;
    background:#ffffff;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.feature-card{
    background:#fff;
    padding:30px 24px;
    border-radius:22px;
    text-align:left;
    transition:0.3s ease;
    box-shadow:var(--shadow-soft);
    border:1px solid var(--border);
}

.feature-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.feature-icon{
    width:56px;
    height:56px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.45rem;
    background:#f7ede4;
    border-radius:16px;
    margin-bottom:18px;
}

.feature-card h3{
    margin-bottom:10px;
    font-size:1.15rem;
    color:var(--text);
}

.feature-card p{
    font-size:14px;
    color:var(--muted);
    line-height:1.7;
}

/* ===== ABOUT LANDING ===== */
.about-landing{
    padding:90px 0;
    background:#fcfaf6;
}

.about-card-main{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
    border:1px solid var(--border);
}

.about-hero-img{
    width:100%;
    height:380px;
    object-fit:cover;
}

.about-main-content{
    padding:34px;
}

.company-title{
    font-size:2rem;
    margin-bottom:18px;
    color:var(--text);
}

.about-main-content blockquote{
    margin:24px 0;
    padding:18px 22px;
    border-left:4px solid var(--primary);
    background:#faf4ee;
    border-radius:12px;
    color:#5c4a3d;
    font-style:italic;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:24px;
    margin:28px 0;
}

.about-block{
    background:#fcfaf7;
    border:1px solid var(--border);
    border-radius:18px;
    padding:20px;
}

.about-block h4{
    margin-bottom:14px;
    font-size:1.2rem;
    color:var(--text);
}

.about-section-img{
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:14px;
}

.about-values-box{
    display:flex;
    gap:20px;
    align-items:flex-start;
    background:#f7f1eb;
    border-radius:20px;
    padding:22px;
    margin-top:24px;
}

.about-values-box h4{
    margin-bottom:10px;
    font-size:1.2rem;
}

.about-values-img{
    width:170px;
    height:170px;
    object-fit:cover;
    border-radius:16px;
    flex-shrink:0;
}

/* ===== MENU SECTION ===== */
.menu-section-landing{
    padding:90px 0;
    background:#ffffff;
}

.menu-tabs{
    display:flex;
    justify-content:center;
    gap:16px;
    margin-bottom:36px;
    flex-wrap:wrap;
}

.menu-tab{
    padding:12px 28px;
    background:#f3ebe4;
    border-radius:999px;
    cursor:pointer;
    font-weight:700;
    transition:0.3s ease;
    color:#5a4638;
}

.menu-tab.active{
    background:var(--primary);
    color:#fff;
}

.menu-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(210px, 1fr));
    gap:22px;
}

.menu-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
    border:1px solid var(--border);
    transition:0.3s ease;
}

.menu-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.menu-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:transform 0.35s ease;
}

.menu-card:hover img{
    transform:scale(1.06);
}

/* ===== REVIEWS ===== */
.reviews-section-landing{
    padding:90px 0;
    background:#f8f6f2;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(230px, 1fr));
    gap:24px;
}

.review-card{
    background:#ffffff;
    border-radius:22px;
    overflow:hidden;
    box-shadow:var(--shadow-soft);
    transition:transform 0.3s ease, box-shadow 0.3s ease;
    border:1px solid var(--border);
}

.review-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.review-card img{
    width:100%;
    height:300px;
    object-fit:cover;
}

.review-content{
    padding:18px;
}

.review-content p{
    font-size:14px;
    color:var(--muted);
    line-height:1.7;
}

/* ===== CONTACT ===== */
.contact-landing{
    padding:90px 0;
    background:#ffffff;
}

.contact-layout{
    display:grid;
    grid-template-columns:1fr 1.3fr;
    gap:24px;
}

.contact-card-landing{
    background:#fff;
    padding:28px;
    border-radius:22px;
    box-shadow:var(--shadow-soft);
    border:1px solid var(--border);
}

.contact-card-landing h3{
    margin-bottom:16px;
    color:var(--text);
    font-size:1.2rem;
}

.contact-card-landing p{
    margin-bottom:12px;
    color:var(--muted);
}

.map-container iframe{
    width:100%;
    height:320px;
    border:none;
    border-radius:16px;
}

/* ===== CTA ===== */
.cta{
    padding:0 0 90px;
    background:var(--bg);
}

.cta-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    background:linear-gradient(135deg, #fff, #f6eee7);
    border:1px solid var(--border);
    box-shadow:var(--shadow-soft);
    border-radius:30px;
    padding:40px;
}

.cta-text{
    max-width:700px;
}

.cta-text h2{
    font-size:clamp(1.8rem, 4vw, 2.8rem);
    line-height:1.1;
    margin-bottom:10px;
    color:var(--text);
}

.cta-text p{
    color:var(--muted);
}

/* ===== BOOKING SECTION ===== */
.booking-section{
    padding:140px 0 60px;
    background:#fdfaf4;
}

.booking-card{
    background:linear-gradient(145deg, #ffffff, #f9f9f9);
    padding:50px;
    border-radius:25px;
    box-shadow:0 30px 70px rgba(0,0,0,0.08);
    max-width:900px;
    margin:auto;
    animation:fadeIn 0.6s ease-in-out;
    transition:all 0.3s ease;
}

.booking-card:hover{
    transform:translateY(-2px);
}

.booking-title{
    text-align:center;
    font-size:30px;
    margin-bottom:35px;
    color:#1e3d2f;
    font-weight:700;
}

/* ===== RULES COLLAPSIBLE ===== */
.rules-container{
    margin-bottom:35px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 18px 40px rgba(0,0,0,0.07);
    transition:all 0.3s ease;
}

.rules-header{
    background:linear-gradient(135deg, #f4b400, #ffcc33);
    padding:20px 25px;
    font-weight:bold;
    cursor:pointer;
    font-size:16px;
    transition:all 0.3s ease;
    border-radius:15px 15px 0 0;
    color:#fff;
    text-align:center;
    margin-bottom:0;
}

.rules-header:hover{
    filter:brightness(0.95);
}

.rules-content{
    display:none;
    background:#fff;
    padding:0 25px;
    border:none;
    border-radius:0 0 15px 15px;
    max-height:300px;
    overflow-y:auto;
}

.rules-content.active{
    display:block;
    padding:20px 25px;
}

.rules-content ul{
    margin-bottom:15px;
    list-style-type:disc;
    padding-left:20px;
}

.rules-content li{
    margin-bottom:10px;
    font-size:14px;
    line-height:1.5;
}

.agree-check input{
    width:18px;
    height:18px;
    accent-color:#ff6600;
}

/* ===== FLOATING RULES BUTTON ===== */
.rules-btn{
    position:fixed;
    bottom:30px;
    right:30px;
    background:#ff6600;
    color:#fff;
    padding:14px 20px;
    border-radius:50px;
    font-weight:bold;
    cursor:pointer;
    box-shadow:0 6px 20px rgba(255,102,0,0.4);
    z-index:1500;
    transition:all 0.3s ease;
}

.rules-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(255,102,0,0.5);
}

/* ===== FORM ===== */
.form-section{
    margin-bottom:45px;
    padding-bottom:25px;
    border-bottom:1px solid #eee;
}

.form-section h3{
    margin-bottom:20px;
    font-size:18px;
    color:#ff6600;
    letter-spacing:0.5px;
    text-transform:uppercase;
}

.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
    flex-wrap:wrap;
}

.form-group{
    flex:1;
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-weight:600;
    margin-bottom:8px;
    font-size:14px;
}

.form-group input,
.form-group select{
    padding:14px;
    border-radius:12px;
    border:1px solid #e0e0e0;
    font-size:14px;
    background:#fafafa;
    transition:all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#ff6600;
    background:#fff;
    box-shadow:0 0 0 3px rgba(255,102,0,0.15);
    outline:none;
}

/* ===== SUMMARY BOX ===== */
.summary-box{
    display:flex;
    justify-content:space-between;
    gap:20px;
    background:#fff5eb;
    padding:25px 20px;
    border-radius:15px;
    margin-bottom:45px;
    box-shadow:inset 0 0 12px rgba(255,102,0,0.08);
    flex-wrap:wrap;
}

.summary-box div{
    flex:1;
    display:flex;
    flex-direction:column;
    min-width:150px;
}

.summary-box span{
    font-size:13px;
    font-weight:600;
    margin-bottom:6px;
}

.summary-box input{
    padding:14px;
    border-radius:10px;
    border:none;
    background:#fff;
    font-weight:bold;
    color:#ff6600;
    box-shadow:inset 0 2px 5px rgba(255,102,0,0.1);
}

/* ===== SUBMIT BUTTON ===== */
.submit-btn{
    background:linear-gradient(135deg, #ff6600, #ff8c00);
    padding:18px;
    width:100%;
    border:none;
    border-radius:16px;
    font-weight:bold;
    font-size:16px;
    color:white;
    cursor:pointer;
    transition:all 0.3s ease;
    box-shadow:0 10px 25px rgba(255,102,0,0.3);
}

.submit-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 30px rgba(255,102,0,0.45);
}

/* ===== MODAL ===== */
.modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.6);
    justify-content:center;
    align-items:center;
    z-index:2000;
}

.modal-content{
    background:#fff;
    padding:40px 30px;
    border-radius:22px;
    width:95%;
    max-width:450px;
    text-align:center;
    animation:fadeIn 0.3s ease;
}

.modal-content h3{
    font-size:18px;
    margin-bottom:15px;
}

.modal-content p{
    font-size:14px;
    line-height:1.6;
    color:#555;
}

.modal-content button{
    margin-top:20px;
    padding:12px 25px;
    background:#ff6600;
    border:none;
    border-radius:12px;
    color:white;
    cursor:pointer;
    font-weight:bold;
    transition:all 0.3s ease;
}

.modal-content button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(255,102,0,0.4);
}

/* ===== ANIMATION ===== */
@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px){
    .features-grid{
        grid-template-columns:repeat(2, 1fr);
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .contact-layout{
        grid-template-columns:1fr;
    }

    .cta-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .hero-wrapper,
    .hero-content{
        min-height:620px;
    }
}

@media (max-width: 768px){
    section{
        scroll-margin-top:85px;
    }

    .menu-toggle{
        display:block;
    }

    .nav-wrapper{
        min-height:72px;
        padding:10px 18px;
    }

    .nav-menu{
        position:absolute;
        top:72px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        display:none;
        padding:22px 0;
        gap:16px;
        box-shadow:0 10px 24px rgba(0,0,0,0.08);
        border-top:1px solid #eee;
        z-index:1100;
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu li a{
        font-size:16px;
        font-weight:700;
    }

    .logo img{
        height:42px;
    }

    .logo span{
        font-size:1.25rem;
    }

    .hero{
        margin-top:82px;
        padding:0 0 22px;
    }

    .hero-wrapper{
        min-height:560px;
        border-radius:22px;
    }

    .hero-content{
        min-height:560px;
        max-width:100%;
        text-align:left;
        padding:64px 20px 56px;
    }

    .hero h1{
        font-size:2.2rem;
        margin-bottom:14px;
    }

    .hero p{
        font-size:1rem;
        margin-bottom:22px;
    }

    .hero-actions{
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        min-height:48px;
        padding:0 22px;
        font-size:14px;
    }

    .hero-stats{
        flex-direction:column;
        width:100%;
    }

    .stat-box{
        width:100%;
    }

    .features-grid,
    .cards-grid{
        grid-template-columns:1fr;
    }

    .about-main-content{
        padding:22px;
    }

    .company-title{
        font-size:1.6rem;
    }

    .about-hero-img{
        height:240px;
    }

    .about-section-img{
        height:200px;
    }

    .about-values-box{
        flex-direction:column;
    }

    .about-values-img{
        width:100%;
        height:220px;
    }

    .menu-card img{
        height:220px;
    }

    .review-card img{
        height:260px;
    }

    .cta-box{
        padding:28px;
    }

    .form-row{
        flex-direction:column;
    }

    .summary-box{
        flex-direction:column;
    }

    .booking-card{
        padding:30px 20px;
        margin:20px;
    }

    .rules-header{
        font-size:14px;
    }

    .booking-title{
        font-size:24px;
    }

    .summary-box div{
        min-width:100%;
        margin-bottom:10px;
    }

    .rules-btn{
        bottom:20px;
        right:20px;
        padding:12px 16px;
        font-size:14px;
    }
}
/* ===== BOOKING PAGE ENHANCEMENTS ===== */
.booking-page{
    padding-top: 150px;
}

.booking-hero-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
    background:linear-gradient(135deg, #fff, #f7efe7);
    border:1px solid var(--border);
    box-shadow:var(--shadow-soft);
    border-radius:28px;
    padding:34px;
    margin-bottom:28px;
}

.booking-hero-text h1{
    font-size:clamp(2rem, 4vw, 3.2rem);
    line-height:1.05;
    margin-bottom:12px;
    color:var(--text);
}

.booking-hero-text p{
    max-width:700px;
    color:var(--muted);
}

.booking-hero-badge{
    min-width:180px;
    padding:22px;
    border-radius:22px;
    background:#fff;
    box-shadow:var(--shadow-soft);
    border:1px solid var(--border);
    text-align:center;
}

.booking-hero-badge strong{
    display:block;
    font-size:1.4rem;
    color:var(--primary);
    margin-bottom:6px;
}

.booking-hero-badge span{
    color:var(--muted);
    font-size:0.95rem;
}

.booking-subtitle{
    text-align:center;
    color:var(--muted);
    margin-top:-14px;
    margin-bottom:28px;
}

.form-section-head{
    margin-bottom:20px;
}

.form-section-head h3{
    margin-bottom:6px;
}

.form-section-head p{
    color:var(--muted);
    font-size:0.95rem;
}

.rules-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
}

.rules-header small{
    font-size:12px;
    font-weight:600;
    opacity:0.92;
}

.rules-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:24px;
}

.rules-block h4{
    margin-bottom:12px;
    color:#1e3d2f;
}

.guest-grid{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:18px;
}

.guest-card{
    background:#fff;
    border:1px solid var(--border);
    box-shadow:var(--shadow-soft);
    border-radius:18px;
    padding:18px;
}

.guest-card label{
    display:block;
    font-weight:700;
    margin-bottom:2px;
}

.guest-card small{
    display:block;
    color:var(--muted);
    margin-bottom:12px;
    font-size:0.86rem;
}

.guest-card input{
    width:100%;
    padding:14px;
    border-radius:12px;
    border:1px solid #e4e4e4;
    background:#fafafa;
    font-size:14px;
}

.guest-card input:focus{
    border-color:#ff6600;
    background:#fff;
    box-shadow:0 0 0 3px rgba(255,102,0,0.15);
    outline:none;
}

.premium-summary{
    background:linear-gradient(135deg, #fff7ef, #fff2e4);
    border:1px solid rgba(255,102,0,0.10);
    box-shadow:0 10px 25px rgba(255,102,0,0.08);
}

.summary-item{
    flex:1;
    min-width:220px;
}

.slot-feedback{
    margin-top:10px;
}

.slot-status{
    font-weight:700;
    margin-bottom:4px;
}

.slot-range{
    font-size:13px;
    color:var(--muted);
}

.form-section-compact{
    padding-bottom:0;
    border-bottom:none;
}

.captcha-wrap{
    display:flex;
    justify-content:flex-start;
}

.form-submit{
    margin-top:10px;
}

/* ===== BOOKING RESPONSIVE ===== */
@media (max-width: 992px){
    .booking-hero-card{
        flex-direction:column;
        align-items:flex-start;
    }

    .rules-grid{
        grid-template-columns:1fr;
    }

    .guest-grid{
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 768px){
    .booking-page{
        padding-top:130px;
    }

    .booking-hero-card{
        padding:24px;
        border-radius:22px;
    }

    .booking-hero-text h1{
        font-size:2rem;
    }

    .guest-grid{
        grid-template-columns:1fr;
    }

    .rules-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .captcha-wrap{
        overflow-x:auto;
    }
}
/* ===== STATUS PAGE ===== */
.status-page-body{
    background: linear-gradient(180deg, #fdfaf4 0%, #f7f1e9 100%);
    min-height: 100vh;
}

.status-page-wrap{
    padding: 40px 20px 60px;
}

.status-shell{
    max-width: 880px;
    margin: 0 auto;
}

.status-topbar{
    margin-bottom: 18px;
}

.status-back-link{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 700;
}

.status-card-premium{
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 34px;
}

.status-card-head{
    text-align: center;
    margin-bottom: 26px;
}

.status-card-head h1{
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 10px;
    color: var(--text);
}

.status-card-head p{
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto;
}

.status-code-panel{
    background: linear-gradient(135deg, #fff8f0, #f7ede4);
    border: 1px solid rgba(143,75,36,0.10);
    border-radius: 22px;
    padding: 24px;
    text-align: center;
    margin-bottom: 22px;
}

.status-code-label{
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.status-code-value{
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: 0.04em;
    word-break: break-word;
}

.status-code-help{
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.92rem;
}

.status-summary-row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.status-pill-card{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 20px;
}

.status-pill-card span{
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.status-pill-card strong{
    font-size: 1.05rem;
    color: var(--text);
}

.status-text-badge{
    color: var(--primary-dark);
}

.status-note-box,
.status-proof-box{
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 16px;
    line-height: 1.7;
}

.status-note-box{
    background: #fffaf3;
    border: 1px solid rgba(180,131,25,0.15);
}

.status-proof-box{
    background: #f6efe8;
    border: 1px solid rgba(143,75,36,0.12);
}

.status-divider{
    height: 1px;
    background: rgba(0,0,0,0.08);
    margin: 22px 0;
}

.status-dynamic-area{
    min-height: 160px;
}

.status-message-card{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 28px;
    text-align: center;
}

.status-icon{
    font-size: 2rem;
    margin-bottom: 12px;
}

.status-message-card h3{
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text);
}

.status-message-card p{
    color: var(--muted);
    line-height: 1.7;
}

.status-amount-box{
    background: linear-gradient(135deg, #fff7ef, #fff2e4);
    border: 1px solid rgba(255,102,0,0.10);
    border-radius: 18px;
    padding: 18px;
    margin: 18px auto;
    max-width: 360px;
}

.status-amount-box span{
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.status-amount-box strong{
    display: block;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.status-small-text{
    font-size: 0.92rem;
    color: var(--muted);
}

.status-action-btn{
    margin-top: 8px;
}

.status-footer-actions{
    display: flex;
    justify-content: center;
}

.btn-secondary-dark{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    background: #1f2f27;
    color: #fff;
    transition: 0.3s ease;
}

.btn-secondary-dark:hover{
    transform: translateY(-2px);
    opacity: 0.95;
}

.pending-state{
    border-left: 5px solid #d97706;
}

.payment-state{
    border-left: 5px solid #2563eb;
}

.confirmed-state{
    border-left: 5px solid #16a34a;
}

.rejected-state{
    border-left: 5px solid #dc2626;
}

/* ===== STATUS RESPONSIVE ===== */
@media (max-width: 768px){
    .status-page-wrap{
        padding: 22px 14px 40px;
    }

    .status-card-premium{
        padding: 22px;
        border-radius: 22px;
    }

    .status-summary-row{
        grid-template-columns: 1fr;
    }

    .status-card-head h1{
        font-size: 2rem;
    }

    .status-message-card{
        padding: 22px;
    }

    .status-code-value{
        font-size: 1.3rem;
    }
}
/* ===== PAYMENT PAGE ===== */
.payment-page-body{
    background: linear-gradient(180deg, #fdfaf4 0%, #f7efe7 100%);
    min-height: 100vh;
}

.payment-page-wrap{
    padding: 40px 20px 60px;
}

.payment-shell{
    max-width: 960px;
    margin: 0 auto;
}

.payment-topbar{
    margin-bottom: 18px;
}

.payment-card-premium{
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 34px;
}

.payment-card-head{
    text-align: center;
    margin-bottom: 26px;
}

.payment-card-head h1{
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 10px;
    color: var(--text);
}

.payment-card-head p{
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

.payment-summary-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.payment-summary-box{
    background: linear-gradient(135deg, #fff8f0, #f7ede4);
    border: 1px solid rgba(143,75,36,0.10);
    border-radius: 20px;
    padding: 20px;
}

.payment-summary-box span{
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.payment-summary-box strong{
    display: block;
    font-size: 1.35rem;
    color: var(--primary-dark);
    word-break: break-word;
}

.payment-info-box{
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
    margin-bottom: 22px;
}

.payment-info-text h3{
    margin-bottom: 12px;
    color: var(--text);
}

.payment-info-text p{
    margin-bottom: 10px;
    color: var(--muted);
}

.payment-small{
    font-size: 0.94rem;
}

.payment-qr-box{
    text-align: center;
}

.payment-qr-box p{
    margin-bottom: 10px;
    color: var(--text);
}

.payment-qr-box img{
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.payment-notes-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.payment-note-card{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    padding: 22px;
}

.payment-note-card h3{
    margin-bottom: 10px;
    font-size: 1.08rem;
    color: var(--text);
}

.payment-note-card p{
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.payment-warning-box{
    background: #fffaf3;
    border: 1px solid rgba(180,131,25,0.15);
    border-radius: 18px;
    padding: 18px 20px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.payment-form-wrap{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.payment-form-grid{
    display: grid;
    gap: 18px;
}

.payment-submit-row{
    margin-top: 6px;
}

.payment-form-grid input[type="text"],
.payment-form-grid input[type="file"]{
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
    font-size: 15px;
    transition: all 0.3s ease;
}

.payment-form-grid input[type="text"]:focus,
.payment-form-grid input[type="file"]:focus{
    border-color: #ff6600;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255,102,0,0.15);
    outline: none;
}

/* ===== PAYMENT RESPONSIVE ===== */
@media (max-width: 992px){
    .payment-summary-grid,
    .payment-notes-grid{
        grid-template-columns: 1fr;
    }

    .payment-info-box{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px){
    .payment-page-wrap{
        padding: 22px 14px 40px;
    }

    .payment-card-premium{
        padding: 22px;
        border-radius: 22px;
    }

    .payment-card-head h1{
        font-size: 2rem;
    }

    .payment-info-box,
    .payment-form-wrap,
    .payment-note-card{
        padding: 18px;
    }

    .payment-qr-box img{
        max-width: 100%;
    }
}
/* ===== PAYMENT SUCCESS PAGE ===== */
.payment-success-body{
    background: linear-gradient(180deg, #fdfaf4 0%, #f7efe7 100%);
    min-height: 100vh;
}

.payment-success-wrap{
    padding: 40px 20px 60px;
}

.payment-success-shell{
    max-width: 760px;
    margin: 0 auto;
}

.payment-success-topbar{
    margin-bottom: 18px;
}

.payment-success-card{
    background: rgba(255,255,255,0.97);
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 36px;
    text-align: center;
}

.payment-success-head{
    margin-bottom: 26px;
}

.success-icon{
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.payment-success-head h1{
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 10px;
    color: var(--text);
}

.payment-success-head p{
    color: var(--muted);
    max-width: 540px;
    margin: 0 auto;
}

.payment-success-summary{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.payment-success-box{
    background: linear-gradient(135deg, #fff8f0, #f7ede4);
    border: 1px solid rgba(143,75,36,0.10);
    border-radius: 20px;
    padding: 20px;
}

.payment-success-box span{
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.payment-success-box strong{
    font-size: 1.3rem;
    color: var(--primary-dark);
    word-break: break-word;
}

.payment-success-status{
    margin-bottom: 18px;
}

.status-badge{
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff3cd;
    color: #856404;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.payment-success-status p{
    color: var(--muted);
}

.payment-success-note{
    background: #fffaf3;
    border: 1px solid rgba(180,131,25,0.15);
    border-radius: 18px;
    padding: 18px 20px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.payment-success-help{
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.payment-success-actions{
    margin-top: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px){
    .payment-success-wrap{
        padding: 22px 14px 40px;
    }

    .payment-success-card{
        padding: 24px;
        border-radius: 22px;
    }

    .payment-success-summary{
        grid-template-columns: 1fr;
    }

    .payment-success-head h1{
        font-size: 1.9rem;
    }
}
.btn-track{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:52px;
    padding:0 28px;
    border-radius:999px;
    font-weight:700;
    background:#fff;
    color:var(--primary-dark);
    border:1px solid rgba(143,75,36,0.14);
    box-shadow:var(--shadow-soft);
    transition:all 0.3s ease;
}

.btn-track:hover{
    transform:translateY(-2px);
    box-shadow:var(--shadow);
    background:#fff8f0;
}

.tracker-section{
    padding:20px 0 90px;
    background:var(--bg);
}

.tracker-card{
    background:linear-gradient(135deg, #ffffff, #f8f1ea);
    border:1px solid var(--border);
    box-shadow:var(--shadow-soft);
    border-radius:28px;
    padding:36px;
    max-width:860px;
    margin:0 auto;
    text-align:center;
}

.tracker-form{
    margin-top:10px;
}

.tracker-input-wrap{
    display:flex;
    gap:14px;
    justify-content:center;
    align-items:center;
    max-width:700px;
    margin:0 auto;
}

.tracker-input-wrap input{
    flex:1;
    min-height:56px;
    border-radius:16px;
    border:1px solid #e4ddd6;
    background:#fff;
    padding:0 18px;
    font-size:15px;
    outline:none;
    transition:all 0.3s ease;
}

.tracker-input-wrap input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 3px rgba(143,75,36,0.12);
}

.tracker-note{
    margin-top:12px;
    font-size:0.9rem;
    color:var(--muted);
}

@media (max-width: 768px){
    .tracker-card{
        padding:24px;
        border-radius:22px;
    }

    .tracker-input-wrap{
        flex-direction:column;
    }

    .tracker-input-wrap input,
    .tracker-input-wrap .btn-primary{
        width:100%;
    }

    .btn-track{
        min-height:48px;
        padding:0 22px;
        font-size:14px;
    }
}
.tracker-alert{
    max-width:700px;
    margin:0 auto 18px;
    background:#fff4f4;
    color:#b42318;
    border:1px solid #f3c7c7;
    padding:14px 16px;
    border-radius:14px;
    font-weight:600;
}