:root {
    --gold: #b58b26;
    --gold2: #dfbd62;
    --ink: #171714;
    --green: #0e5b43;
    --soft: #f6f1e5;
    --line: #e6dcc4;
    --white: #fff
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Tajawal,Arial,sans-serif;
    color: var(--ink);
    background: #fff
}

a {
    text-decoration: none;
    color: inherit
}

img {
    display: block;
    max-width: 100%
}

.container {
    width: min(1160px,92%);
    margin: auto
}

.narrow {
    width: min(780px,92%)
}

.topbar {
    background: #191919;
    color: #eee;
    padding: 8px 0;
    font-size: 13px
}

    .topbar span {
        margin-right: 25px
    }

.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 8px 30px rgba(0,0,0,.07)
}

.nav {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 24px;
    color: #9b741a
}

    .brand img {
        width: 70px;
        height: 64px;
        object-fit: contain
    }

    .brand small {
        display: block;
        color: #333;
        font-size: 10px;
        font-weight: 500
    }

.nav nav {
    display: flex;
    gap: 30px
}

    .nav nav a {
        font-size: 15px;
        position: relative
    }

        .nav nav a:after {
            content: "";
            position: absolute;
            bottom: -9px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: .3s
        }

        .nav nav a:hover:after {
            width: 100%
        }

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 26px
}

.hero {
    min-height: 640px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    background: linear-gradient(90deg,rgba(15,10,3,.3),rgba(15,10,3,.05)),url('https://images.unsplash.com/photo-1565552645632-d725f8bfc19a?auto=format&fit=crop&w=1900&q=85') center/cover
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(0,0,0,.25),rgba(0,0,0,.68))
}

.hero-content {
    position: relative;
    z-index: 2
}

.eyebrow {
    color: var(--gold2);
    font-weight: 700;
    letter-spacing: .4px
}

.hero h1 {
    font-size: 56px;
    line-height: 1.2;
    max-width: 800px;
    margin: 18px 0
}

    .hero h1 em {
        font-style: normal;
        color: #fff
    }

.hero p {
    font-size: 20px
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 30px
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: white;
    border-radius: 9px;
    padding: 13px 24px;
    font: inherit;
    font-weight: 700;
    cursor: pointer
}

    .btn:hover {
        background: #987017
    }

.btn-outline {
    background: rgba(255,255,255,.08);
    border-color: #fff
}

.btn.small {
    padding: 9px 16px
}

.btn.wide {
    width: 100%;
    font-size: 17px
}

.search-panel {
    position: relative;
    margin-top: -45px;
    z-index: 5;
    background: white;
    border-radius: 18px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,.15)
}

label {
    font-weight: 600;
    display: block
}

.search-panel label {
    font-size: 12px;
    color: #777;
    margin-bottom: 6px
}

input, select, textarea {
    width: 100%;
    border: 1px solid #d8d3c9;
    border-radius: 7px;
    padding: 12px;
    font: inherit;
    background: white
}

textarea {
    min-height: 100px;
    resize: vertical
}

.section {
    padding: 85px 0
}

.soft {
    background: var(--soft)
}

.intro {
    text-align: center
}

    .intro h2, .heading h2 {
        font-size: 36px;
        margin: 10px 0
    }

    .intro p {
        font-size: 18px;
        line-height: 2;
        color: #595959
    }

.heading {
    text-align: center;
    margin-bottom: 35px
}

.cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px
}

.card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(31,24,8,.09);
    transition: .3s
}

    .card:hover {
        transform: translateY(-6px)
    }

    .card > img {
        width: 100%;
        height: 240px;
        object-fit: cover
    }

.card-body {
    padding: 22px
}

    .card-body h3, .card-body h2 {
        margin: 12px 0
    }

    .card-body p {
        color: #666;
        line-height: 1.7
    }

.tag {
    display: inline-block;
    padding: 5px 11px;
    background: #f0e4c6;
    color: #795b13;
    border-radius: 30px;
    font-size: 13px
}

.stars {
    color: #d1a536;
    letter-spacing: 2px
}

.card-foot {
    border-top: 1px solid #eee;
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

    .card-foot strong, .card-foot b {
        color: var(--green);
        font-size: 21px
    }

.stats {
    padding: 45px 0;
    background: linear-gradient(120deg,#caa546,#9f771b);
    color: white
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    text-align: center
}

.stats b {
    display: block;
    font-size: 36px
}

.stats span {
    opacity: .85
}

.page-hero {
    padding: 80px 0;
    background: linear-gradient(120deg,#19170f,#493913);
    color: white;
    text-align: center
}

    .page-hero.compact {
        padding: 52px 0
    }

    .page-hero h1 {
        font-size: 42px;
        margin: 10px
    }

.filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap
}

    .filters a {
        border: 1px solid var(--line);
        padding: 8px 18px;
        border-radius: 30px
    }

        .filters a:hover {
            background: var(--gold);
            color: white
        }

.hotel-list {
    display: grid;
    gap: 22px
}

.hotel-row {
    display: grid;
    grid-template-columns: 270px 1fr 220px;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    background: white
}

    .hotel-row > img {
        width: 100%;
        height: 220px;
        object-fit: cover
    }

.hotel-info, .hotel-price {
    padding: 25px
}

    .hotel-info h2 {
        color: #9c741b
    }

.hotel-price {
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center
}

    .hotel-price b {
        font-size: 25px;
        color: var(--green)
    }

.hotel-cover {
    height: 420px;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative
}

    .hotel-cover:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.46)
    }

    .hotel-cover > div {
        position: relative
    }

    .hotel-cover h1 {
        font-size: 48px
    }

.detail-shell {
    margin-top: -115px;
    position: relative
}

.hotel-summary, .content-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 13px 35px rgba(0,0,0,.08);
    margin-bottom: 24px
}

.hotel-summary {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    text-align: center;
    color: #9b741a
}

.room-row {
    display: grid;
    grid-template-columns: 160px 1fr 170px;
    gap: 20px;
    align-items: center;
    border-top: 1px solid #eee;
    padding: 20px 0
}

    .room-row img {
        height: 120px;
        width: 160px;
        object-fit: cover;
        border-radius: 10px
    }

    .room-row > div:last-child {
        display: flex;
        flex-direction: column;
        gap: 7px
    }

.booking-grid {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 28px;
    align-items: start
}

.selected-room, .form-card {
    background: #fff;
    border: 1px solid #e7e1d4;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 14px 40px rgba(0,0,0,.06)
}

.selected-room {
    position: sticky;
    top: 110px
}

    .selected-room img {
        height: 210px;
        width: 100%;
        object-fit: cover;
        border-radius: 12px
    }

    .selected-room b {
        color: var(--green);
        font-size: 22px
    }

.form-card h2 {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    color: var(--green)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px
}

.form-card label {
    margin-bottom: 15px;
    font-size: 14px
}

    .form-card label input, .form-card label select, .form-card label textarea {
        margin-top: 7px
    }

.total-box {
    background: #f7f0df;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    font-size: 18px
}

    .total-box b {
        font-size: 26px;
        color: var(--green)
    }

.validation {
    color: #b42318;
    margin: 10px 0
}

.success {
    text-align: center;
    padding: 70px 20px
}

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #e4f5eb;
    color: #168352;
    margin: auto;
    display: grid;
    place-items: center;
    font-size: 50px
}

.package-detail {
    padding: 130px 0;
    background-size: cover;
    background-position: center;
    color: white;
    position: relative
}

    .package-detail:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,.58)
    }

    .package-detail .container {
        position: relative
    }

    .package-detail h1 {
        font-size: 52px
    }

    .package-detail b {
        font-size: 32px;
        color: var(--gold2)
    }

.prose {
    line-height: 2
}

.alert-success {
    padding: 15px;
    background: #e5f6ea;
    color: #116a38;
    border-radius: 10px;
    margin-bottom: 20px
}

.login-box {
    max-width: 520px
}

.dashboard {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px
}

    .dashboard a {
        padding: 30px;
        background: #fff5db;
        border: 1px solid #e6cf95;
        border-radius: 14px;
        text-align: center
    }

    .dashboard b {
        display: block;
        font-size: 40px;
        color: var(--gold)
    }

.admin-head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.table-wrap {
    overflow: auto
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white
}

th, td {
    padding: 14px;
    border: 1px solid #e7e1d4;
    text-align: right
}

th {
    background: #2c240f;
    color: white
}

footer {
    background: #241803;
    color: white;
    padding-top: 60px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .7fr 1.4fr;
    gap: 55px
}

    .footer-grid h3 {
        color: var(--gold2)
    }

    .footer-grid a {
        display: block;
        margin: 9px 0
    }

    .footer-grid input, .footer-grid textarea {
        margin-bottom: 9px
    }

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.15);
    padding: 18px;
    margin-top: 40px;
    color: #bfae8c
}

.whatsapp {
    position: fixed;
    left: 25px;
    bottom: 25px;
    background: #1ebd61;
    color: white;
    padding: 13px 20px;
    border-radius: 40px;
    font-weight: 700;
    z-index: 20
}

@media(max-width:850px) {
    .topbar span {
        display: none
    }

    .nav {
        height: 72px
    }

    .brand img {
        width: 52px;
        height: 50px
    }

    .menu-toggle {
        display: block
    }

    .nav nav {
        display: none;
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        background: white;
        padding: 20px;
        flex-direction: column;
        box-shadow: 0 15px 30px rgba(0,0,0,.12)
    }

        .nav nav.open {
            display: flex
        }

    .hero {
        min-height: 560px
    }

        .hero h1 {
            font-size: 38px
        }

    .search-panel {
        grid-template-columns: 1fr;
        margin-top: -25px
    }

    .cards {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px
    }

    .hotel-row {
        grid-template-columns: 1fr
    }

        .hotel-row > img {
            height: 250px
        }

    .hotel-price {
        border: 0;
        border-top: 1px solid var(--line)
    }

    .hotel-summary {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .room-row {
        grid-template-columns: 1fr
    }

        .room-row img {
            width: 100%;
            height: 220px
        }

    .booking-grid {
        grid-template-columns: 1fr
    }

    .selected-room {
        position: static
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .dashboard {
        grid-template-columns: 1fr 1fr
    }

    .package-detail h1, .hotel-cover h1 {
        font-size: 36px
    }
}
.footer-social {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 20px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        color: #fff;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid #d1a72c;
        border-radius: 50%;
        transition: 0.3s;
    }

    .footer-social svg {
        width: 19px;
        height: 19px;
        display: block;
        fill: currentColor;
    }

    .footer-social a:hover {
        color: #241803;
        background: #d1a72c;
        transform: translateY(-4px);
    }
.hotel-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

    .hotel-map-header h2 {
        margin: 0 0 7px;
    }

    .hotel-map-header p {
        margin: 0;
        color: #777;
    }

@media (max-width: 700px) {
    .hotel-map-header {
        align-items: stretch;
        flex-direction: column;
    }

    #hotelDetailsMap {
        height: 350px !important;
    }
}