:root {
    --primary: #1aa0e6;
    --primary-dark: #0a87ca;
    --secondary: #0a3748;
    --text: #243746;
    --muted: #7b8794;
    --border: #e3edf4;
    --bg: #f6fbff;
    --white: #ffffff;
    --card: #ffffff;
    --shadow: 0 10px 30px rgba(15, 48, 70, 0.08);
    --radius: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(180deg, #f9fcff 0%, #f3fbff 100%);
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.header-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.brand-text h2 {
    font-size: 34px;
    color: var(--secondary);
    line-height: 1;
    font-weight: 900;
}

.brand-text span {
    color: var(--muted);
    font-size: 14px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    font-weight: 700;
    color: #355066;
    position: relative;
    padding: 6px 0;
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: var(--primary);
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 99px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-btn {
    border: none;
    border-radius: 12px;
    padding: 11px 16px;
    font-weight: 800;
    cursor: pointer;
}

.primary-btn {
    background: var(--primary);
    color: var(--white);
}

.ghost-btn {
    background: #eef7fd;
    color: var(--primary-dark);
}

.logout-form {
    display: inline-block;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: #eef7fd;
    border-radius: 14px;
    color: var(--secondary);
    cursor: pointer;
}

.mobile-drawer {
    display: none;
}

/* Footer */
.site-footer {
    margin-top: 70px;
    background: #003d4b;
    color: #fff;
    padding-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
}

.site-footer h3,
.site-footer h4 {
    margin-bottom: 16px;
}

.site-footer p {
    line-height: 2;
    color: rgba(255,255,255,0.85);
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.9);
}

.footer-copy {
    text-align: center;
    padding: 18px;
    margin-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.75);
}

/* General cards */
.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Hero */
.hero-section,
.page-hero,
.details-hero {
    padding: 58px 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(28, 164, 230, 0.08), transparent 28%),
        radial-gradient(circle at 85% 15%, rgba(28, 164, 230, 0.10), transparent 22%),
        linear-gradient(180deg, #fbfdff, #f4fbff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: #eaf7ff;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero-content h1,
.page-hero h1,
.details-header h1 {
    font-size: 52px;
    line-height: 1.3;
    color: var(--secondary);
    margin-bottom: 16px;
    font-weight: 900;
}

.hero-content h1 span,
.page-hero h1 span {
    color: var(--primary);
}

.hero-content p,
.page-hero p,
.details-header p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.9;
    max-width: 760px;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    background: #fff;
    border-radius: 999px;
    box-shadow: var(--shadow);
    padding: 8px;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 18px;
    font-size: 15px;
    background: transparent;
}

.search-box button {
    border: none;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 800;
    cursor: pointer;
}

.hero-actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 22px;
    border-radius: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.hero-card {
    background: #fff;
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: 28px;
    text-align: center;
}

.hero-card img {
    width: 230px;
    margin: 0 auto 16px;
}

.hero-card h3 {
    font-size: 34px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.hero-card p {
    color: var(--muted);
    line-height: 1.8;
}

/* section headers */
.section {
    padding: 60px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 28px;
}

.section-head h2 {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 900;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
}

/* Categories */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.category-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 24px 20px;
    text-align: center;
}

.category-card i,
.category-card svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 22px;
    color: var(--secondary);
    margin-bottom: 6px;
}

.category-card p {
    color: var(--muted);
    font-size: 14px;
}

/* Places */
.places-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.place-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.place-img {
    height: 210px;
    overflow: hidden;
}

.place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.place-info {
    padding: 18px;
}

.place-info h3 {
    color: var(--secondary);
    font-size: 22px;
    margin-bottom: 8px;
}

.place-info p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 12px;
}

.place-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 14px;
}

.place-rating {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eefaf1;
    color: #1f9d56;
    border-radius: 999px;
    padding: 6px 10px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 14px;
}

.details-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #f2fbff;
    color: var(--primary-dark);
    border-radius: 14px;
    padding: 12px;
    font-weight: 800;
}

/* Details page */
.details-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.details-rating {
    min-width: 220px;
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 26px;
    text-align: center;
}

.details-rating strong {
    display: block;
    font-size: 48px;
    color: #f59e0b;
}

.details-rating small {
    color: var(--muted);
}

.details-grid {
    display: grid;
    grid-template-columns: 1.45fr 0.75fr;
    gap: 24px;
    align-items: start;
}

.details-image {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.details-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.details-card,
.info-card,
.place-form {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 28px;
    margin-top: 20px;
}

.details-card h2,
.info-card h3 {
    color: var(--secondary);
    font-size: 28px;
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row svg {
    color: var(--primary);
    margin-top: 3px;
}

.info-row span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 4px;
}

.info-row strong {
    color: var(--secondary);
}

.whatsapp-btn {
    margin-top: 18px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #22c55e;
    color: #fff;
    height: 52px;
    border-radius: 14px;
    font-weight: 800;
}

/* forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    font-size: 14px;
    background: #fbfdff;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.submit-btn {
    border: none;
    background: var(--primary);
    color: #fff;
    width: 100%;
    height: 54px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    margin-top: 20px;
}

/* alerts */
.alert {
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 18px;
}

.success-alert {
    background: #ecfdf3;
    color: #1f9d56;
}

.error-alert {
    background: #fef2f2;
    color: #dc2626;
}

/* bottom nav */
.mobile-bottom-nav {
    display: none;
}

/* responsive */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-drawer {
        display: none;
        background: #fff;
        border-top: 1px solid var(--border);
        padding: 14px 20px;
    }

    .mobile-drawer.show {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .mobile-drawer a {
        padding: 10px 0;
        font-weight: 700;
        color: var(--secondary);
        border-bottom: 1px solid #eef3f8;
    }

    .hero-grid,
    .details-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .places-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .details-header {
        flex-direction: column;
        align-items: stretch;
    }

    .details-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 78px;
    }

    .container {
        width: 92%;
    }

    .header-wrap {
        min-height: 72px;
    }

    .brand img {
        width: 46px;
        height: 46px;
    }

    .brand-text h2 {
        font-size: 24px;
    }

    .brand-text span {
        font-size: 11px;
    }

    .hero-section,
    .page-hero,
    .details-hero {
        padding: 36px 0;
    }

    .hero-content h1,
    .page-hero h1,
    .details-header h1 {
        font-size: 31px;
    }

    .hero-content p,
    .page-hero p,
    .details-header p {
        font-size: 14px;
    }

    .search-box {
        flex-direction: column;
        border-radius: 22px;
        padding: 12px;
    }

    .search-box button {
        width: 100%;
        border-radius: 14px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-card img {
        width: 150px;
    }

    .hero-card h3 {
        font-size: 24px;
    }

    .section {
        padding: 40px 0;
    }

    .section-head h2 {
        font-size: 28px;
    }

    .category-grid,
    .places-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .place-img {
        height: 190px;
    }

    .details-image img {
        height: 230px;
    }

    .details-card,
    .info-card,
    .place-form {
        padding: 22px;
        border-radius: 22px;
    }

    .details-card h2,
    .info-card h3 {
        font-size: 24px;
    }

    .mobile-bottom-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 68px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        background: rgba(255,255,255,0.96);
        border-top: 1px solid var(--border);
        backdrop-filter: blur(16px);
        box-shadow: 0 -10px 26px rgba(15, 48, 70, 0.08);
        z-index: 999;
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        font-size: 10px;
        color: var(--muted);
        font-weight: 800;
    }

    .mobile-bottom-nav a.active {
        color: var(--primary);
    }

    .site-footer {
        padding-bottom: 80px;
    }
}

.app-cta {
    background:
        radial-gradient(circle at left, rgba(26,160,230,0.18), transparent 35%),
        linear-gradient(135deg, #003d4b, #07566a);
    color: #fff;
    border-radius: 32px;
    padding: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow);
}

.app-cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.app-cta p {
    color: rgba(255,255,255,0.82);
    line-height: 1.9;
}

.empty-box {
    background: #fff;
    border-radius: 24px;
    padding: 42px;
    text-align: center;
    box-shadow: var(--shadow);
    grid-column: 1 / -1;
}

.empty-box svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: 12px;
}

.empty-box h3 {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 8px;
}

.empty-box p {
    color: var(--muted);
}

@media (max-width: 768px) {
    .app-cta {
        flex-direction: column;
        text-align: center;
        padding: 28px 22px;
        border-radius: 24px;
    }

    .app-cta h2 {
        font-size: 24px;
        line-height: 1.5;
    }

    .app-cta .btn {
        width: 100%;
    }
}

/* Categories Page Design */

.categories-page-grid {
    grid-template-columns: repeat(4, 1fr);
}

.category-big-card {
    min-height: 245px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.category-big-card::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 130px;
    height: 130px;
    background: rgba(26, 160, 230, 0.08);
    border-radius: 50%;
}

.category-big-card:hover {
    transform: translateY(-7px);
}

.category-icon-box {
    width: 74px;
    height: 74px;
    margin: 0 auto 16px;
    border-radius: 24px;
    background: linear-gradient(135deg, #eefaff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px var(--border);
}

.category-icon-box svg {
    width: 42px !important;
    height: 42px !important;
    color: var(--primary);
    margin: 0 !important;
}

.category-arrow {
    margin-top: 16px;
    color: var(--primary);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 14px;
}

.category-arrow svg {
    width: 17px !important;
    height: 17px !important;
    margin: 0 !important;
}

@media (max-width: 992px) {
    .categories-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-page-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    .category-big-card {
        min-height: 180px;
        padding: 22px 14px !important;
        border-radius: 22px !important;
    }

    .category-icon-box {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        margin-bottom: 12px;
    }

    .category-icon-box svg {
        width: 32px !important;
        height: 32px !important;
    }

    .category-big-card h3 {
        font-size: 17px !important;
        margin-bottom: 5px;
    }

    .category-big-card p {
        font-size: 12px !important;
        line-height: 1.6;
    }

    .category-arrow {
        font-size: 12px;
        margin-top: 10px;
    }
}

/* Places Page Advanced Design */

.places-filter-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr auto auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 34px;
}

.filter-search,
.filter-select {
    height: 54px;
    border: 1px solid var(--border);
    border-radius: 17px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    background: #fbfdff;
}

.filter-search svg,
.filter-select svg {
    width: 19px;
    height: 19px;
    color: var(--primary);
    flex-shrink: 0;
}

.filter-search input,
.filter-select select {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    font-size: 14px;
}

.filter-select select {
    cursor: pointer;
}

.filter-submit {
    height: 54px;
    border: none;
    border-radius: 17px;
    background: var(--primary);
    color: white;
    padding: 0 24px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.filter-submit svg {
    width: 18px;
    height: 18px;
}

.filter-reset {
    height: 54px;
    border-radius: 17px;
    border: 1px solid var(--border);
    background: #f7fbfd;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-weight: 800;
}

.places-page-head {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.places-page-head h2 {
    color: var(--secondary);
    font-size: 31px;
    font-weight: 900;
    margin-bottom: 5px;
}

.places-page-head p {
    color: var(--muted);
    line-height: 1.8;
}

.places-page-head span {
    background: #eaf7ff;
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 900;
    white-space: nowrap;
}

.places-list-grid {
    grid-template-columns: repeat(3, 1fr);
}

.modern-place-card {
    position: relative;
    transition: 0.25s ease;
}

.modern-place-card:hover {
    transform: translateY(-6px);
}

.place-floating-rating {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    color: #1f9d56;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.place-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 8px;
}

.place-card-top h3 {
    margin-bottom: 0;
}

.place-category-pill {
    background: #eefaff;
    color: var(--primary-dark);
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .places-filter-card {
        grid-template-columns: 1fr 1fr;
    }

    .filter-search {
        grid-column: 1 / -1;
    }

    .places-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .places-filter-card {
        grid-template-columns: 1fr !important;
        padding: 14px !important;
        border-radius: 22px !important;
        margin-bottom: 24px !important;
    }

    .filter-search,
    .filter-select,
    .filter-submit,
    .filter-reset {
        width: 100%;
        height: 50px;
        border-radius: 15px;
    }

    .filter-submit,
    .filter-reset {
        justify-content: center;
    }

    .places-page-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .places-page-head h2 {
        font-size: 25px;
    }

    .places-list-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .modern-place-card {
        display: grid;
        grid-template-columns: 42% 58%;
        min-height: 160px;
    }

    .modern-place-card .place-img {
        height: 100% !important;
        min-height: 160px;
    }

    .modern-place-card .place-img img {
        height: 100%;
    }

    .modern-place-card .place-info {
        padding: 14px !important;
    }

    .modern-place-card .place-info h3 {
        font-size: 18px !important;
    }

    .modern-place-card .place-info p {
        display: none;
    }

    .place-card-top {
        flex-direction: column;
        gap: 6px;
    }

    .place-meta {
        gap: 6px !important;
        margin: 10px 0 !important;
    }

    .place-meta span {
        font-size: 12px;
    }

    .details-link {
        padding: 9px;
        border-radius: 12px;
        font-size: 13px;
    }

    .place-floating-rating {
        top: 10px;
        right: 10px;
        padding: 5px 9px;
        font-size: 12px;
    }
}

/* New Details Page: Gallery + Actions */

.place-gallery-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 14px;
}

.gallery-main {
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    background: #eef7fb;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
}

.gallery-slide.active {
    opacity: 1;
    visibility: visible;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-btn.prev {
    right: 16px;
}

.gallery-btn.next {
    left: 16px;
}

.gallery-thumbs {
    margin-top: 12px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery-thumb {
    width: 86px;
    height: 66px;
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
}

.gallery-thumb.active {
    border-color: var(--primary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-list-open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.info-open-row {
    background: #f7fbfd;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-open-row svg {
    color: var(--primary);
    flex-shrink: 0;
}

.info-open-row span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 4px;
}

.info-open-row strong {
    color: var(--secondary);
}

.details-actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.details-action {
    min-height: 50px;
    border: none;
    border-radius: 15px;
    background: #eefaff;
    color: var(--primary-dark);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    padding: 0 14px;
    text-align: center;
}

.whatsapp-action {
    background: #ecfdf3;
    color: #16a34a;
}

.menu-action {
    background: #fff7ed;
    color: #ea580c;
}

.delivery-action {
    background: #eff6ff;
    color: #2563eb;
}

.review-action {
    background: #f5f3ff;
    color: #7c3aed;
}

.review-form-card {
    display: none;
}

.review-form-card.show {
    display: block;
}

.review-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.review-form-header button {
    border: none;
    background: #fee2e2;
    color: #dc2626;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    cursor: pointer;
}

.sticky-actions-card {
    position: sticky;
    top: 105px;
}

.side-action {
    width: 100%;
    min-height: 50px;
    margin-top: 12px;
    border: none;
    border-radius: 15px;
    background: #eefaff;
    color: var(--primary-dark);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.side-action.green {
    background: #ecfdf3;
    color: #16a34a;
}

.menu-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 31, 40, 0.55);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.menu-modal.show {
    display: flex;
}

.menu-modal-content {
    background: #fff;
    border-radius: 24px;
    max-width: 720px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
}

.menu-modal-header {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-modal-header h3 {
    color: var(--secondary);
}

.menu-modal-header button {
    border: none;
    background: #fee2e2;
    color: #dc2626;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    cursor: pointer;
}

.menu-modal-body {
    padding: 18px;
    max-height: 78vh;
    overflow-y: auto;
}

.menu-modal-body img {
    width: 100%;
    border-radius: 18px;
}

@media (max-width: 992px) {
    .info-list-open {
        grid-template-columns: 1fr;
    }

    .details-actions {
        grid-template-columns: repeat(2, 1fr);
    }

    .sticky-actions-card {
        position: static;
    }

    .gallery-main {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .place-gallery-card {
        padding: 10px;
        border-radius: 22px;
    }

    .gallery-main {
        height: 250px;
        border-radius: 18px;
    }

    .gallery-btn {
        width: 36px;
        height: 36px;
    }

    .gallery-thumb {
        width: 72px;
        height: 54px;
        border-radius: 12px;
    }

    .details-image-badge {
        display: none;
    }

    .details-actions {
        grid-template-columns: 1fr;
    }

    .details-action {
        width: 100%;
    }

    .info-open-row {
        padding: 14px;
    }

    .menu-modal-content {
        border-radius: 20px;
    }
}

.admin-gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.admin-gallery-item {
    background: #f7fbfd;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    padding: 8px;
}

.admin-gallery-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 8px;
}

.admin-gallery-item button {
    width: 100%;
    border: none;
    background: #ef4444;
    color: #fff;
    border-radius: 10px;
    padding: 8px;
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 768px) {
    .admin-gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Add Place Page Design */

.add-place-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.add-place-info-card,
.add-place-form-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.add-place-info-card {
    padding: 30px;
    position: sticky;
    top: 105px;
}

.info-icon-circle {
    width: 76px;
    height: 76px;
    border-radius: 24px;
    background: #eaf7ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.info-icon-circle svg {
    width: 38px;
    height: 38px;
}

.add-place-info-card h2,
.add-place-form-card h2 {
    color: var(--secondary);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 12px;
}

.steps-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.step-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-item span {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.step-item p {
    color: var(--muted);
    line-height: 1.8;
    margin-top: 2px;
}

.note-box {
    margin-top: 24px;
    background: #fff7ed;
    color: #9a3412;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.note-box svg {
    min-width: 22px;
    margin-top: 3px;
}

.note-box p {
    line-height: 1.8;
    font-size: 14px;
}

.form-subtitle {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 22px;
}

.form-section-title {
    margin: 26px 0 18px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 18px;
}

.form-section-title:first-of-type {
    margin-top: 0;
}

.form-section-title svg {
    width: 22px;
    height: 22px;
}

@media (max-width: 992px) {
    .add-place-layout {
        grid-template-columns: 1fr;
    }

    .add-place-info-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .add-place-info-card,
    .add-place-form-card {
        border-radius: 22px;
        padding: 22px;
    }

    .add-place-info-card h2,
    .add-place-form-card h2 {
        font-size: 24px;
    }

    .info-icon-circle {
        width: 62px;
        height: 62px;
        border-radius: 20px;
    }

    .info-icon-circle svg {
        width: 31px;
        height: 31px;
    }

    .step-item span {
        width: 30px;
        height: 30px;
        min-width: 30px;
        font-size: 13px;
    }
}

/* About Page Design */

.about-modern-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.about-main-card,
.about-mini-card,
.about-vision-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.about-main-card {
    padding: 36px;
}

.about-icon {
    width: 78px;
    height: 78px;
    border-radius: 26px;
    background: #eaf7ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.about-icon svg {
    width: 40px;
    height: 40px;
}

.about-main-card h2 {
    color: var(--secondary);
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 14px;
}

.about-main-card p {
    color: var(--muted);
    line-height: 2;
    margin-bottom: 14px;
}

.about-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-side-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.about-mini-card {
    padding: 24px;
}

.about-mini-card svg {
    width: 34px;
    height: 34px;
    color: var(--primary);
    margin-bottom: 14px;
}

.about-mini-card h3 {
    color: var(--secondary);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 8px;
}

.about-mini-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

.about-vision-card {
    padding: 36px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
    background:
        radial-gradient(circle at left, rgba(26,160,230,0.13), transparent 35%),
        #ffffff;
}

.about-vision-card h2 {
    color: var(--secondary);
    font-size: 34px;
    font-weight: 900;
    margin: 14px 0 10px;
}

.about-vision-card p {
    color: var(--muted);
    line-height: 2;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.vision-stats div {
    background: #f7fbfd;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 20px 14px;
    text-align: center;
}

.vision-stats strong {
    display: block;
    color: var(--primary);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 6px;
}

.vision-stats span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 992px) {
    .about-modern-layout,
    .about-vision-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-main-card,
    .about-mini-card,
    .about-vision-card {
        border-radius: 22px;
        padding: 22px;
    }

    .about-side-grid {
        grid-template-columns: 1fr;
    }

    .about-main-card h2,
    .about-vision-card h2 {
        font-size: 25px;
        line-height: 1.5;
    }

    .about-icon {
        width: 62px;
        height: 62px;
        border-radius: 20px;
    }

    .about-icon svg {
        width: 32px;
        height: 32px;
    }

    .about-actions {
        flex-direction: column;
    }

    .about-actions .btn {
        width: 100%;
    }

    .vision-stats {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Design */

.contact-modern-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: start;
}

.contact-info-modern,
.contact-form-modern {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 32px;
}

.contact-info-modern {
    position: sticky;
    top: 105px;
}

.contact-icon-circle {
    width: 78px;
    height: 78px;
    border-radius: 26px;
    background: #eaf7ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.contact-icon-circle svg {
    width: 40px;
    height: 40px;
}

.contact-info-head h2,
.contact-form-modern h2 {
    color: var(--secondary);
    font-size: 31px;
    font-weight: 900;
    margin-bottom: 10px;
}

.contact-info-head p {
    color: var(--muted);
    line-height: 2;
}

.contact-info-list {
    margin-top: 26px;
    display: grid;
    gap: 14px;
}

.contact-info-item {
    background: #f7fbfd;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.contact-info-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-info-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 4px;
}

.contact-info-item strong {
    color: var(--secondary);
    font-size: 15px;
}

@media (max-width: 992px) {
    .contact-modern-layout {
        grid-template-columns: 1fr;
    }

    .contact-info-modern {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-info-modern,
    .contact-form-modern {
        border-radius: 22px;
        padding: 22px;
    }

    .contact-info-head h2,
    .contact-form-modern h2 {
        font-size: 25px;
        line-height: 1.5;
    }

    .contact-icon-circle {
        width: 62px;
        height: 62px;
        border-radius: 20px;
    }

    .contact-icon-circle svg {
        width: 32px;
        height: 32px;
    }

    .contact-info-item {
        padding: 14px;
    }
}

/* Admin Dashboard Design */

.admin-hero {
    background:
        radial-gradient(circle at left, rgba(26,160,230,0.12), transparent 35%),
        linear-gradient(180deg, #fbfdff, #f4fbff);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.admin-stat-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-icon.blue {
    background: #eaf7ff;
    color: #0a87ca;
}

.stat-icon.orange {
    background: #fff7ed;
    color: #ea580c;
}

.stat-icon.green {
    background: #ecfdf3;
    color: #16a34a;
}

.stat-icon.red {
    background: #fef2f2;
    color: #dc2626;
}

.stat-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.admin-stat-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px;
}

.admin-stat-card strong {
    display: block;
    color: var(--secondary);
    font-size: 30px;
    font-weight: 900;
}

.admin-actions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}

.admin-action-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 24px;
    transition: 0.25s ease;
}

.admin-action-card:hover {
    transform: translateY(-6px);
}

.admin-action-card svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
    margin-bottom: 14px;
}

.admin-action-card h3 {
    color: var(--secondary);
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 8px;
}

.admin-action-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
}

.admin-table-modern {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 24px;
}

.admin-table-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-table-head h2 {
    color: var(--secondary);
    font-size: 27px;
    font-weight: 900;
    margin-bottom: 5px;
}

.admin-table-head p {
    color: var(--muted);
}

.admin-table-head a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-dark);
    background: #eaf7ff;
    padding: 10px 16px;
    border-radius: 14px;
    font-weight: 900;
}

.responsive-table {
    overflow-x: auto;
}

.responsive-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.responsive-table th {
    background: #f7fbfd;
    color: var(--secondary);
    padding: 14px;
    text-align: right;
    font-size: 14px;
}

.responsive-table td {
    padding: 14px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
}

.status-badge {
    display: inline-flex;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.status-badge.pending {
    background: #fff7ed;
    color: #ea580c;
}

.status-badge.approved {
    background: #ecfdf3;
    color: #16a34a;
}

.status-badge.rejected {
    background: #fef2f2;
    color: #dc2626;
}

.table-action-link {
    display: inline-flex;
    background: #eefaff;
    color: var(--primary-dark);
    padding: 8px 13px;
    border-radius: 12px;
    font-weight: 900;
}

.empty-table {
    text-align: center;
    color: var(--muted);
    padding: 20px;
}

@media (max-width: 1100px) {
    .admin-stats-grid,
    .admin-actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-stats-grid,
    .admin-actions-grid {
        grid-template-columns: 1fr;
    }

    .admin-stat-card,
    .admin-action-card,
    .admin-table-modern {
        border-radius: 22px;
        padding: 20px;
    }

    .admin-table-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-table-head h2 {
        font-size: 23px;
    }

    .admin-table-head a {
        width: 100%;
        justify-content: center;
    }
}

/* Admin Places Index */

.admin-page-top {
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 22px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-page-top h2 {
    color: var(--secondary);
    font-size: 29px;
    font-weight: 900;
    margin-bottom: 5px;
}

.admin-page-top p {
    color: var(--muted);
}

.admin-add-btn {
    min-height: 50px;
    padding: 0 20px;
    border-radius: 15px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.admin-places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.admin-place-card {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.admin-place-card:hover {
    transform: translateY(-5px);
}

.admin-place-img {
    height: 210px;
    position: relative;
    overflow: hidden;
}

.admin-place-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255,255,255,0.94);
    color: #f59e0b;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.featured-badge svg {
    width: 15px;
    height: 15px;
    fill: #f59e0b;
}

.admin-place-content {
    padding: 18px;
}

.admin-place-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.admin-place-head h3 {
    color: var(--secondary);
    font-size: 22px;
    font-weight: 900;
}

.admin-place-head span {
    background: #fff7ed;
    color: #ea580c;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 900;
    direction: ltr;
    white-space: nowrap;
}

.admin-place-content p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 14px;
}

.admin-place-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.admin-place-meta div {
    color: var(--muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.admin-place-meta svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.admin-place-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.admin-place-actions a,
.admin-place-actions button {
    border: none;
    min-height: 42px;
    border-radius: 13px;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.admin-place-actions svg {
    width: 16px;
    height: 16px;
}

.view-action {
    background: #eefaff;
    color: var(--primary-dark);
}

.edit-action {
    background: #f5f3ff;
    color: #7c3aed;
}

.delete-action {
    background: #fef2f2;
    color: #dc2626;
}

@media (max-width: 1100px) {
    .admin-places-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-page-top {
        flex-direction: column;
        align-items: stretch;
        border-radius: 22px;
        padding: 20px;
    }

    .admin-page-top h2 {
        font-size: 24px;
    }

    .admin-add-btn {
        width: 100%;
    }

    .admin-places-grid {
        grid-template-columns: 1fr;
    }

    .admin-place-card {
        border-radius: 22px;
    }

    .admin-place-img {
        height: 190px;
    }

    .admin-place-actions {
        grid-template-columns: 1fr;
    }
}

/* Admin Create/Edit Place Form */

.admin-form-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 24px;
    align-items: start;
}

.admin-form-side,
.admin-form-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.admin-form-side {
    position: sticky;
    top: 105px;
}

.admin-form-side h2 {
    color: var(--secondary);
    font-size: 29px;
    font-weight: 900;
    margin-bottom: 10px;
}

.admin-form-side p {
    color: var(--muted);
    line-height: 1.9;
}

.side-back-btn {
    width: 100%;
    margin-top: 14px;
}

.admin-form-section {
    background: #fbfdff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    margin-bottom: 20px;
}

.current-image-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 12px;
    margin-bottom: 12px;
}

.current-image-box p {
    color: var(--muted);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 13px;
}

.current-image-box img {
    max-width: 260px;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
}

.input-hint {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 12px;
}

.checkbox-group {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    margin: 0 !important;
    cursor: pointer;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
}

.checkbox-label span {
    color: var(--secondary);
    font-weight: 900;
}

@media (max-width: 992px) {
    .admin-form-layout {
        grid-template-columns: 1fr;
    }

    .admin-form-side {
        position: static;
    }
}

@media (max-width: 768px) {
    .admin-form-side,
    .admin-form-card {
        border-radius: 22px;
        padding: 20px;
    }

    .admin-form-section {
        border-radius: 20px;
        padding: 16px;
    }

    .admin-form-side h2 {
        font-size: 24px;
    }

    .current-image-box img {
        max-width: 100%;
        width: 100%;
        height: 170px;
    }
}

/* Admin Place Requests Index */

.admin-requests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.admin-request-card {
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 22px;
    transition: 0.25s ease;
}

.admin-request-card:hover {
    transform: translateY(-5px);
}

.request-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.request-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #eaf7ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.request-icon svg {
    width: 28px;
    height: 28px;
}

.admin-request-card h3 {
    color: var(--secondary);
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 8px;
}

.admin-request-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 16px;
}

.request-info-list {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.request-info-list div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.request-info-list svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.request-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.request-actions a,
.request-actions button {
    border: none;
    min-height: 42px;
    border-radius: 13px;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.request-actions svg {
    width: 16px;
    height: 16px;
}

.approve-action {
    background: #ecfdf3;
    color: #16a34a;
}

.reject-action {
    background: #fef2f2;
    color: #dc2626;
}

@media (max-width: 1100px) {
    .admin-requests-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .admin-requests-grid {
        grid-template-columns: 1fr;
    }

    .admin-request-card {
        border-radius: 22px;
        padding: 20px;
    }

    .request-actions {
        grid-template-columns: 1fr;
    }
}

/* Admin Request Show */

.request-show-layout {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 24px;
    align-items: start;
}

.request-show-main {
    display: grid;
    gap: 20px;
}

.request-show-card,
.request-actions-card {
    background: #fff;
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 26px;
}

.request-show-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.request-show-head h2 {
    color: var(--secondary);
    font-size: 31px;
    font-weight: 900;
    margin-bottom: 8px;
}

.request-show-head p {
    color: var(--muted);
    line-height: 1.9;
}

.request-show-card h3,
.request-actions-card h3 {
    color: var(--secondary);
    font-size: 25px;
    font-weight: 900;
    margin-bottom: 18px;
}

.request-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.request-detail-item {
    background: #f7fbfd;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.request-detail-item svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.request-detail-item span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 4px;
}

.request-detail-item strong {
    color: var(--secondary);
    font-size: 15px;
}

.request-notes-box {
    margin-top: 18px;
    background: #fff7ed;
    color: #9a3412;
    border-radius: 18px;
    padding: 18px;
}

.request-notes-box h4 {
    margin-bottom: 8px;
    font-size: 17px;
}

.request-notes-box p {
    line-height: 1.9;
}

.request-show-side {
    position: sticky;
    top: 105px;
}

.approve-side {
    background: #ecfdf3 !important;
    color: #16a34a !important;
}

.reject-side {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}

.back-side {
    background: #f7fbfd !important;
    color: var(--secondary) !important;
}

@media (max-width: 992px) {
    .request-show-layout {
        grid-template-columns: 1fr;
    }

    .request-show-side {
        position: static;
    }
}

@media (max-width: 768px) {
    .request-show-card,
    .request-actions-card {
        border-radius: 22px;
        padding: 20px;
    }

    .request-show-head {
        flex-direction: column;
    }

    .request-show-head h2 {
        font-size: 25px;
    }

    .request-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin Contact Messages */

.messages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.message-card {
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 22px;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.message-card:hover {
    transform: translateY(-5px);
}

.message-card.new-message {
    border-color: rgba(234, 88, 12, 0.22);
}

.message-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.message-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: #eaf7ff;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-icon svg {
    width: 28px;
    height: 28px;
}

.message-card h3 {
    color: var(--secondary);
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 8px;
}

.message-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 16px;
}

.message-info-list {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.message-info-list div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.message-info-list svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.message-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.message-actions a,
.message-actions button {
    border: none;
    min-height: 42px;
    border-radius: 13px;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.message-actions svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1100px) {
    .messages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .messages-grid {
        grid-template-columns: 1fr;
    }

    .message-card {
        border-radius: 22px;
        padding: 20px;
    }

    .message-actions {
        grid-template-columns: 1fr;
    }
}

/* Admin Contact Message Show */

.message-full-box {
    background: #f7fbfd;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 22px;
    color: var(--text);
    line-height: 2;
    white-space: pre-line;
    font-size: 15px;
}

/* Admin Reviews Page */

.reviews-admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-admin-card {
    background: #fff;
    border-radius: 26px;
    box-shadow: var(--shadow);
    padding: 22px;
    transition: 0.25s ease;
    border: 1px solid transparent;
}

.review-admin-card:hover {
    transform: translateY(-5px);
}

.review-admin-card.pending-review {
    border-color: rgba(234, 88, 12, 0.22);
}

.review-admin-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.review-user-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
}

.review-admin-user {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.review-admin-user h3 {
    color: var(--secondary);
    font-size: 23px;
    font-weight: 900;
}

.review-place-name {
    background: #f7fbfd;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 10px 12px;
    color: var(--muted);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
}

.review-place-name svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.review-comment-text {
    color: var(--text);
    line-height: 1.9;
    font-size: 14px;
    background: #fbfdff;
    border-radius: 16px;
    padding: 14px;
    margin-bottom: 14px;
}

.review-admin-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.review-admin-meta div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.review-admin-meta svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.review-admin-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.review-admin-actions form {
    width: 100%;
}

.review-admin-actions button {
    border: none;
    min-height: 42px;
    border-radius: 13px;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
}

.review-admin-actions svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1100px) {
    .reviews-admin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-admin-grid {
        grid-template-columns: 1fr;
    }

    .review-admin-card {
        border-radius: 22px;
        padding: 20px;
    }

    .review-admin-user {
        flex-direction: column;
        gap: 6px;
    }

    .review-admin-actions {
        grid-template-columns: 1fr;
    }
}

/* Premium Reviews Design */

.premium-reviews-card {
    overflow: hidden;
}

.reviews-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.reviews-title-row h2 {
    margin-bottom: 6px !important;
}

.reviews-title-row p {
    color: var(--muted);
    line-height: 1.8;
}

.reviews-modern-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 22px;
    align-items: start;
}

.reviews-score-box {
    background: linear-gradient(180deg, #eefaff, #ffffff);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(26, 160, 230, 0.04);
}

.reviews-score-box strong {
    display: block;
    color: var(--primary);
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 12px;
    direction: ltr;
}

.reviews-score-box span {
    display: block;
    color: var(--secondary);
    font-weight: 900;
    margin-bottom: 6px;
}

.reviews-score-box small {
    color: var(--muted);
    font-size: 13px;
}

.reviews-comments-box {
    min-width: 0;
}

.facebook-comments {
    display: grid;
    gap: 14px;
}

.fb-comment {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.fb-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(26, 160, 230, 0.22);
}

.fb-comment-body {
    flex: 1;
    min-width: 0;
}

.fb-bubble {
    background: #f7fbfd;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 14px 16px;
}

.fb-comment-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.fb-comment-head strong {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 900;
}

.fb-bubble p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.9;
    margin: 0;
    word-break: break-word;
}

.fb-comment-body small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 6px;
    padding-right: 4px;
}

.review-rate {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #f59e0b;
    font-weight: 900;
    direction: ltr;
    white-space: nowrap;
}

.rating-svg {
    width: 17px;
    height: 17px;
    color: #f59e0b;
    fill: #f59e0b;
    stroke-width: 2.4;
}

.show-comments-btn {
    border: none;
    background: #eefaff;
    color: var(--primary-dark);
    min-height: 46px;
    padding: 0 18px;
    border-radius: 15px;
    margin-top: 16px;
    font-weight: 900;
    cursor: pointer;
    width: 100%;
}

.all-comments-box {
    display: none;
    margin-top: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
}

.all-comments-box.show {
    display: block;
}

.all-comments-header {
    background: #f7fbfd;
    border-bottom: 1px solid var(--border);
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.all-comments-header h3 {
    color: var(--secondary);
    font-size: 20px;
    font-weight: 900;
}

.all-comments-header button {
    border: none;
    background: #fef2f2;
    color: #dc2626;
    border-radius: 12px;
    padding: 8px 14px;
    font-weight: 900;
    cursor: pointer;
}

.all-comments-scroll {
    max-height: 380px;
    overflow-y: auto;
    padding: 16px;
    display: grid;
    gap: 14px;
}

.no-reviews-box {
    background: #f7fbfd;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px 20px;
    text-align: center;
}

.no-reviews-box svg {
    width: 42px;
    height: 42px;
    color: var(--primary);
    margin-bottom: 12px;
}

.no-reviews-box h3 {
    color: var(--secondary);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
}

.no-reviews-box p {
    color: var(--muted);
    line-height: 1.8;
}

@media (max-width: 992px) {
    .reviews-modern-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reviews-title-row {
        flex-direction: column;
        align-items: stretch;
    }

    .reviews-title-row .details-action {
        width: 100%;
    }

    .reviews-score-box {
        border-radius: 20px;
        padding: 22px 16px;
    }

    .reviews-score-box strong {
        font-size: 38px;
    }

    .fb-avatar {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 16px;
    }

    .fb-bubble {
        padding: 12px 13px;
        border-radius: 16px;
    }

    .fb-comment-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .all-comments-scroll {
        max-height: 340px;
    }
}

/* Restaurant Details: Location First + Tajribati Opinion */

.details-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.details-section-head h2 {
    margin-bottom: 6px !important;
}

.details-section-head p {
    color: var(--muted);
    line-height: 1.8;
}

.mini-action-btn {
    min-height: 42px;
    padding: 0 15px;
    border-radius: 14px;
    background: #eefaff;
    color: var(--primary-dark);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.mini-action-btn svg {
    width: 17px;
    height: 17px;
}

.location-highlight {
    background:
        radial-gradient(circle at left, rgba(26,160,230,0.13), transparent 35%),
        linear-gradient(135deg, #f4fbff, #ffffff);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 22px;
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.location-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-icon svg {
    width: 30px;
    height: 30px;
}

.location-highlight span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 5px;
}

.location-highlight strong {
    color: var(--secondary);
    font-size: 23px;
    font-weight: 900;
    line-height: 1.7;
}

.tajribati-opinion-card {
    background:
        radial-gradient(circle at top left, rgba(26,160,230,0.12), transparent 35%),
        #ffffff !important;
}

.opinion-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.opinion-logo {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: 22px;
    background: #eefaff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.opinion-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.opinion-header h2 {
    margin-bottom: 5px !important;
}

.opinion-header p {
    color: var(--muted);
    line-height: 1.8;
}

.opinion-content {
    background: #f7fbfd;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 16px;
}

.opinion-content p {
    color: var(--text);
    line-height: 2.1;
    font-size: 15px;
    margin: 0;
}

.opinion-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    background: #fff7ed;
    color: #ea580c;
    border-radius: 18px;
    padding: 14px 16px;
}

.opinion-rating span {
    font-weight: 900;
}

.opinion-rating strong {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    direction: ltr;
    font-size: 19px;
    font-weight: 900;
}

@media (max-width: 992px) {
    .details-section-head {
        flex-direction: column;
    }

    .mini-action-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .location-highlight {
        padding: 17px;
        border-radius: 20px;
        align-items: flex-start;
    }

    .location-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 16px;
    }

    .location-icon svg {
        width: 25px;
        height: 25px;
    }

    .location-highlight strong {
        font-size: 18px;
    }

    .opinion-header {
        align-items: flex-start;
    }

    .opinion-logo {
        width: 58px;
        height: 58px;
        min-width: 58px;
        border-radius: 18px;
    }

    .opinion-content {
        padding: 16px;
        border-radius: 18px;
    }

    .opinion-content p {
        font-size: 14px;
        line-height: 2;
    }

    .opinion-rating {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Fix Mobile Restaurant Details Page */

@media (max-width: 768px) {

    .details-hero {
        padding: 20px 0 18px !important;
        background: linear-gradient(180deg, #f4fbff, #ffffff) !important;
    }

    .details-header {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        text-align: right !important;
    }

    .details-header > div:first-child {
        order: 1;
    }

    .details-rating {
        order: 2;
        width: 100% !important;
        min-width: unset !important;
        padding: 18px !important;
        border-radius: 22px !important;
        display: grid !important;
        grid-template-columns: auto 1fr;
        align-items: center;
        gap: 12px;
        text-align: right !important;
    }

    .details-rating .big-star {
        width: 28px !important;
        height: 28px !important;
        margin: 0 !important;
    }

    .details-rating strong {
        font-size: 32px !important;
        line-height: 1 !important;
    }

    .details-rating small {
        grid-column: 1 / -1;
        font-size: 12px !important;
        color: var(--muted) !important;
    }

    .details-header .badge {
        margin-bottom: 10px !important;
        font-size: 12px !important;
        padding: 6px 12px !important;
    }

    .details-header h1 {
        font-size: 30px !important;
        line-height: 1.35 !important;
        margin-bottom: 6px !important;
    }

    .details-header p {
        font-size: 13px !important;
        line-height: 1.8 !important;
    }

    .section {
        padding: 20px 0 34px !important;
    }

    .details-grid {
        display: block !important;
    }

    .place-gallery-card {
        margin-top: 0 !important;
        border-radius: 22px !important;
        padding: 8px !important;
    }

    .gallery-main {
        height: 210px !important;
        border-radius: 18px !important;
    }

    .gallery-thumbs {
        justify-content: flex-end !important;
        padding: 8px 4px 2px !important;
        margin-top: 6px !important;
    }

    .gallery-thumb {
        width: 56px !important;
        height: 44px !important;
        border-radius: 10px !important;
    }

    .gallery-btn {
        width: 34px !important;
        height: 34px !important;
        background: rgba(255, 255, 255, 0.92) !important;
    }

    .gallery-btn.prev {
        right: 10px !important;
    }

    .gallery-btn.next {
        left: 10px !important;
    }

    .details-card {
        margin-top: 12px !important;
        border-radius: 22px !important;
        padding: 18px !important;
    }

    .details-section-head {
        gap: 10px !important;
        margin-bottom: 14px !important;
    }

    .details-section-head h2 {
        font-size: 22px !important;
        margin-bottom: 4px !important;
    }

    .details-section-head p {
        font-size: 12px !important;
    }

    .location-highlight {
        padding: 14px !important;
        border-radius: 18px !important;
        margin-bottom: 12px !important;
    }

    .location-icon {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        border-radius: 15px !important;
    }

    .location-highlight strong {
        font-size: 16px !important;
    }

    .info-list-open {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .info-open-row {
        border-radius: 16px !important;
        padding: 13px !important;
    }

    .details-actions {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .details-action {
        min-height: 48px !important;
        border-radius: 14px !important;
        font-size: 14px !important;
    }

    .details-side {
        display: none !important;
    }

    .site-footer {
        display: none !important;
    }
}

/* Fix Mobile Bottom Navigation */

@media (max-width: 768px) {

    body {
        padding-bottom: 95px !important;
    }

    .mobile-bottom-nav {
        position: fixed !important;
        right: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 72px !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(18px) !important;
        border-top: 1px solid var(--border) !important;
        box-shadow: 0 -10px 30px rgba(15, 48, 70, 0.12) !important;
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        z-index: 99999 !important;
        border-radius: 22px 22px 0 0 !important;
        overflow: hidden !important;
    }

    .mobile-bottom-nav a {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        color: var(--muted) !important;
        font-size: 10px !important;
        font-weight: 900 !important;
        min-width: 0 !important;
        text-align: center !important;
    }

    .mobile-bottom-nav a svg {
        width: 22px !important;
        height: 22px !important;
        stroke-width: 2.4 !important;
    }

    .mobile-bottom-nav a.active {
        color: var(--primary) !important;
    }

    .mobile-bottom-nav a.active svg {
        stroke-width: 3 !important;
    }

    .details-main,
    .place-details-section,
    .section {
        padding-bottom: 90px !important;
    }

    .site-footer {
        display: none !important;
    }
}

/* Final Mobile Width Fix - حل مشكلة ان الصفحة تطلع يمين */

@media (max-width: 768px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    body {
        padding-bottom: 95px !important;
    }

    .site-main,
    main,
    section,
    .section,
    .page-hero,
    .details-hero {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 14px !important;
        padding-left: 14px !important;
    }

    .details-grid,
    .add-place-layout,
    .contact-modern-layout,
    .about-modern-layout,
    .admin-form-layout,
    .request-show-layout {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding-right: 14px !important;
        padding-left: 14px !important;
    }

    .details-main,
    .details-side,
    .place-gallery-card,
    .details-card,
    .info-card,
    .restaurant-location-card,
    .tajribati-opinion-card,
    .reviews-card,
    .review-form-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        box-sizing: border-box !important;
    }

    .details-side {
        display: none !important;
    }

    .details-header {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .place-gallery-card {
        margin-top: 12px !important;
    }

    .gallery-main,
    .details-image,
    .modern-details-image {
        width: 100% !important;
        max-width: 100% !important;
    }

    .info-list-open {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .details-actions {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
    }

    .details-action,
    .side-action,
    .whatsapp-btn,
    .submit-btn {
        width: 100% !important;
    }

    .mobile-bottom-nav {
        width: 100% !important;
        right: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
    }
}

/* Home Ads Slider */

.home-ads-section {
    padding: 26px 0 10px;
}

.ads-slider {
    background: #ffffff;
    border-radius: 30px;
    box-shadow: var(--shadow);
    padding: 16px;
    overflow: hidden;
}

.ads-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ad-slide {
    min-height: 145px;
    border-radius: 24px;
    padding: 22px;
    background:
        radial-gradient(circle at left, rgba(26,160,230,0.18), transparent 38%),
        linear-gradient(135deg, #003d4b, #07566a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    overflow: hidden;
    position: relative;
}

.ad-slide::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    left: -45px;
    bottom: -45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.09);
}

.ad-slide span {
    display: inline-flex;
    background: rgba(255,255,255,0.14);
    color: #d9f3ff;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
}

.ad-slide h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 6px;
}

.ad-slide p {
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    font-size: 14px;
}

.ad-slide > svg {
    width: 52px;
    height: 52px;
    min-width: 52px;
    color: #7edbff;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .ads-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
    }

    .ad-slide {
        min-width: 78%;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .home-ads-section {
        padding: 18px 0 6px;
    }

    .ads-slider {
        border-radius: 22px;
        padding: 10px;
    }

    .ads-track {
        gap: 10px;
    }

    .ad-slide {
        min-width: 88%;
        min-height: 130px;
        border-radius: 20px;
        padding: 18px;
    }

    .ad-slide h3 {
        font-size: 18px;
        line-height: 1.5;
    }

    .ad-slide p {
        font-size: 12px;
    }

    .ad-slide > svg {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
}

/* Image Advertisements Slider */

.ad-image-slide {
    height: 190px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: block;
    box-shadow: var(--shadow);
}

.ad-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ad-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 61, 75, 0.72), rgba(0, 61, 75, 0.12));
    color: #fff;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.ad-image-overlay span {
    width: fit-content;
    background: rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.ad-image-overlay h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
}

.ad-image-overlay p {
    color: rgba(255,255,255,0.86);
}

@media (max-width: 992px) {
    .ad-image-slide {
        min-width: 78%;
        height: 170px;
        scroll-snap-align: start;
    }
}

@media (max-width: 768px) {
    .ad-image-slide {
        min-width: 88%;
        height: 145px;
        border-radius: 20px;
    }

    .ad-image-overlay {
        padding: 16px;
    }

    .ad-image-overlay h3 {
        font-size: 18px;
    }

    .ad-image-overlay p {
        font-size: 12px;
    }
}