:root {
    --primary: #b88746;
    --secondary: #152238;
    --accent: #f7efe4;
    --body: #5f6877;
    --heading: #111827;
    --white: #ffffff;
    --soft: #f8f5ef;
    --border: rgba(17, 24, 39, .11);
    --radius: 24px;
    --shadow: 0 24px 60px rgba(21, 34, 56, .12);
    --body-font: 'Cairo', Arial, sans-serif;
    --heading-font: 'Cairo', Arial, sans-serif;
    --h1-size: 40px;
    --h2-size: 30px;
    --h3-size: 24px;
    --p-size: 16px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--body-font); color: var(--body); background: #fff; font-size: var(--p-size); line-height: 1.75; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
h1,h2,h3,h4 { font-family: var(--heading-font); color: var(--heading); line-height: 1.16; margin: 0 0 16px; }
h1 { font-size: clamp(36px, 6vw, var(--h1-size)); letter-spacing: -1.5px; }
h2 { font-size: clamp(28px, 4vw, var(--h2-size)); letter-spacing: -1px; }
h3 { font-size: var(--h3-size); }
.topbar { background: var(--secondary); color: rgba(255,255,255,.86); font-size: 13px; }
.topbar-inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.93); backdrop-filter: blur(16px); box-shadow: 0 12px 40px rgba(0,0,0,.05); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 20px; }
.brand img { max-height: 58px; }
.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav a { padding: 10px 13px; border-radius: 999px; color: #222; font-weight: 600; font-size: 14px; }
.main-nav a:hover, .main-nav a.active { color: var(--primary); background: var(--accent); }
.main-nav .nav-cta { background: var(--primary); color: #fff; padding-inline: 20px; box-shadow: 0 14px 30px rgba(184,135,70,.25); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--accent); color: var(--secondary); font-size: 20px; }
.hero { position: relative; min-height: 680px; display: flex; align-items: center; overflow: hidden; background: var(--secondary); color: #fff; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,34,56,.88), rgba(21,34,56,.55), rgba(21,34,56,.22)); z-index: 1; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 710px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.15); color: #fff; margin-bottom: 20px; font-weight: 700; }
.hero h1 { color: #fff; }
.hero p { color: rgba(255,255,255,.86); font-size: 18px; max-width: 620px; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 13px 22px; border-radius: 999px; background: var(--primary); color: #fff; font-weight: 800; border: 0; cursor: pointer; box-shadow: 0 18px 40px rgba(184,135,70,.22); }
.btn.secondary { background: #fff; color: var(--secondary); }
.section { padding: 90px 0; }
.section.soft { background: var(--soft); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.section-head p { max-width: 640px; margin: 0; }
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 44px rgba(21,34,56,.08); }
.apartment-card { transition: .25s ease; }
.apartment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.apartment-card .image { height: 270px; position: relative; overflow: hidden; }
.apartment-card .image img { width: 100%; height: 100%; object-fit: cover; transition: .3s ease; }
.apartment-card:hover .image img { transform: scale(1.05); }
.badge { position: absolute; top: 16px; left: 16px; background: #fff; color: var(--primary); border-radius: 999px; padding: 8px 12px; font-weight: 800; font-size: 13px; }
.card-body { padding: 22px; }
.meta { display: flex; gap: 12px; flex-wrap: wrap; margin: 14px 0; color: #3d4656; font-weight: 600; font-size: 14px; }
.service-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.service-pills span { display: inline-flex; gap: 6px; align-items: center; background: var(--accent); color: #62461f; padding: 7px 10px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.price { color: var(--primary); font-size: 22px; font-weight: 900; }
.icon-card { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border); box-shadow: 0 14px 36px rgba(21,34,56,.06); }
.icon-card i { width: 54px; height: 54px; display: grid; place-items: center; background: var(--accent); color: var(--primary); border-radius: 18px; font-size: 23px; margin-bottom: 18px; }
.page-hero { padding: 100px 0; background: linear-gradient(135deg, var(--secondary), #263a5c); color: #fff; }
.page-hero h1 { color: #fff; }
.breadcrumbs { color: rgba(255,255,255,.78); font-weight: 600; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 30px; align-items: start; }
.detail-gallery { display: grid; grid-template-columns: 1.4fr .8fr; gap: 14px; margin-bottom: 26px; }
.detail-gallery img { height: 230px; width: 100%; object-fit: cover; border-radius: 20px; }
.detail-gallery img:first-child { grid-row: span 2; height: 474px; }
.panel { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: 0 18px 50px rgba(21,34,56,.08); padding: 26px; }
.sticky { position: sticky; top: 130px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; color: #111827; font-weight: 800; margin-bottom: 7px; }
input, select, textarea { width: 100%; border: 1px solid var(--border); border-radius: 14px; padding: 12px 13px; font: inherit; color: #111827; background: #fff; }
textarea { min-height: 130px; resize: vertical; }
.alert { padding: 14px 16px; border-radius: 16px; margin-bottom: 18px; font-weight: 700; }
.alert.success { background: #ecfdf3; color: #027a48; }
.alert.error { background: #fff1f3; color: #b42318; }
.gallery-grid { columns: 3 260px; column-gap: 18px; }
.gallery-item { break-inside: avoid; margin-bottom: 18px; border-radius: 24px; overflow: hidden; box-shadow: 0 18px 42px rgba(21,34,56,.12); }
.gallery-item img { width: 100%; }
.blog-card .image { height: 235px; overflow: hidden; }
.blog-card img { width: 100%; height: 100%; object-fit: cover; }
.faq-item { border: 1px solid var(--border); border-radius: 18px; background: #fff; margin-bottom: 14px; overflow: hidden; }
.faq-question { width: 100%; text-align: left; border: 0; background: #fff; color: var(--heading); padding: 18px 20px; font-weight: 900; font-size: 17px; cursor: pointer; display: flex; justify-content: space-between; gap: 15px; }
.faq-answer { display: none; padding: 0 20px 20px; }
.faq-item.open .faq-answer { display: block; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.site-footer { background: var(--secondary); color: rgba(255,255,255,.78); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 34px; }
.footer-logo { max-height: 72px; filter: brightness(0) invert(1); margin-bottom: 18px; }
.site-footer h4 { color: #fff; }
.site-footer a { display: block; margin: 9px 0; }
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; }
.copyright { margin-top: 50px; padding: 20px; text-align: center; border-top: 1px solid rgba(255,255,255,.1); }
.floating-whatsapp { position: fixed; right: 20px; bottom: 22px; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: #fff; font-size: 28px; z-index: 60; box-shadow: 0 16px 40px rgba(37,211,102,.35); }
@media (max-width: 960px) {
    .menu-toggle { display: grid; place-items: center; }
    .main-nav { position: absolute; top: 128px; left: 16px; right: 16px; display: none; flex-direction: column; align-items: stretch; background: #fff; padding: 16px; border-radius: 20px; box-shadow: var(--shadow); }
    .main-nav.show { display: flex; }
    .grid-3, .grid-4, .detail-layout, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .section-head { display: block; }
    .detail-gallery { grid-template-columns: 1fr; }
    .detail-gallery img, .detail-gallery img:first-child { height: 260px; grid-row: auto; }
    .sticky { position: static; }
}
@media (max-width: 640px) {
    .section { padding: 60px 0; }
    .hero { min-height: 590px; }
    .form-grid { grid-template-columns: 1fr; }
    .topbar-inner { justify-content: center; text-align: center; }
}

/* Modern polish update */
.topbar {
    background: linear-gradient(135deg, var(--secondary), #22395f);
    border-bottom: 1px solid rgba(255,255,255,.09);
}
.topbar-inner {
    min-height: 46px;
}
.topbar-inner span,
.topbar-inner a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}
.topbar-inner i {
    color: var(--primary);
}
.site-header {
    border-bottom: 1px solid rgba(17,24,39,.06);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
    display: block;
}
.section-head p {
    margin: 0 auto;
}
.section-kicker,
.eyebrow.soft-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #fff);
    color: var(--primary);
    border: 1px solid rgba(184,135,70,.16);
    box-shadow: 0 12px 34px rgba(184,135,70,.1);
    font-weight: 900;
    margin-bottom: 14px;
}
.section-head h2::after,
.center-title h1::after,
.center-title h2::after {
    content: '';
    display: block;
    width: 74px;
    height: 4px;
    border-radius: 999px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.section-action {
    margin-top: 22px;
}

.apartment-card,
.blog-card {
    border-radius: 28px;
    padding: 12px;
    background: linear-gradient(180deg, #fff, #fffaf4);
    border: 1px solid rgba(184,135,70,.14);
}
.apartment-card .card-body,
.blog-card .card-body {
    padding: 18px 10px 10px;
}
.apartment-image,
.blog-image {
    position: relative;
    display: block;
    height: 220px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--soft);
}
.apartment-image img,
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, filter .35s ease;
}
.apartment-card:hover .apartment-image img,
.blog-card:hover .blog-image img {
    transform: scale(1.055);
    filter: saturate(1.08);
}
.price-badge,
.date-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: calc(100% - 28px);
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.93);
    color: var(--secondary);
    font-weight: 900;
    font-size: 13px;
    box-shadow: 0 12px 28px rgba(21,34,56,.16);
    backdrop-filter: blur(12px);
}
.price-badge {
    color: var(--primary);
}
.compact-meta {
    gap: 8px;
    margin: 12px 0;
}
.compact-meta span {
    background: #f8f5ef;
    border: 1px solid rgba(184,135,70,.14);
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 12px;
}
.service-pills span {
    border: 1px solid rgba(184,135,70,.12);
    background: linear-gradient(135deg, var(--accent), #fff);
}
.card-link,
.read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 900;
}
.card-link i,
.read-link i {
    transition: transform .25s ease;
}
.card-link:hover i,
.read-link:hover i {
    transform: translateX(4px);
}

.services-grid {
    grid-template-columns: repeat(3, 1fr);
}
.icon-card {
    position: relative;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.icon-card::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(184,135,70,.08);
}
.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(21,34,56,.11);
    border-color: rgba(184,135,70,.28);
}

.gallery-grid {
    columns: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-item {
    position: relative;
    margin-bottom: 0;
    border-radius: 28px;
    border: 8px solid #fff;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 22px 54px rgba(21,34,56,.13);
}
.gallery-item::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: auto 16px 16px auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(21,34,56,.72);
    opacity: 0;
    transform: translateY(10px);
    transition: .25s ease;
}
.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}
.gallery-item img {
    height: 260px;
    object-fit: cover;
    transition: transform .35s ease;
}
.gallery-item:hover img {
    transform: scale(1.06);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background: rgba(7, 13, 24, .88);
    backdrop-filter: blur(10px);
}
.lightbox.show {
    display: flex;
}
.lightbox img {
    max-width: min(1100px, 94vw);
    max-height: 86vh;
    border-radius: 24px;
    box-shadow: 0 28px 90px rgba(0,0,0,.45);
}
.lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--secondary);
    font-size: 20px;
    cursor: pointer;
}

.page-hero {
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(184,135,70,.18);
    right: -160px;
    top: -190px;
}
.page-hero .container {
    position: relative;
    z-index: 1;
}
.page-hero p {
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,.82);
}

.contact-grid .panel,
.article-panel,
.detail-main-panel {
    background: linear-gradient(180deg, #fff, #fffaf4);
}
.contact-info-list p {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(184,135,70,.13);
}
.contact-info-list i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--accent);
    color: var(--primary);
}

.detail-gallery a {
    display: block;
    overflow: hidden;
    border-radius: 22px;
}
.detail-gallery img {
    transition: transform .35s ease;
}
.detail-gallery a:hover img {
    transform: scale(1.05);
}
.booking-panel {
    position: static !important;
}
.article-featured-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    margin-bottom: 28px;
    border: 10px solid #fff;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(21,34,56,.13);
}

@media (max-width: 960px) {
    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .apartment-image,
    .blog-image {
        height: 205px;
    }
    .article-featured-image {
        height: 280px;
    }
}

.detail-gallery a:first-child {
    grid-row: span 2;
}
.detail-gallery a:first-child img {
    height: 474px;
}
.detail-gallery a:not(:first-child) img {
    height: 230px;
}
@media (max-width: 960px) {
    .detail-gallery a:first-child {
        grid-row: auto;
    }
    .detail-gallery a:first-child img,
    .detail-gallery a:not(:first-child) img {
        height: 260px;
    }
}

/* 2026 visual update from screenshot notes */
.site-header {
    position: relative;
    top: auto;
}
.site-header.is-sticky {
    position: sticky;
    top: 0;
}
.topbar {
    position: relative;
    z-index: 49;
}
.nav-wrap {
    background: rgba(255, 255, 255, .96);
}
.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}
.services-grid .icon-card {
    min-height: 230px;
}
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(184,135,70,.26), transparent 32%),
        linear-gradient(135deg, #101b2f, var(--secondary) 55%, #22395f);
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
}
.site-footer .container,
.site-footer .copyright {
    position: relative;
    z-index: 1;
}
.footer-grid > div {
    padding: 22px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 26px;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(12px);
}
.site-footer h4::after {
    content: '';
    display: block;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    margin-top: 10px;
    background: var(--primary);
}
.site-footer a:hover {
    color: #fff;
    transform: translateX(3px);
}
.site-footer a {
    transition: .25s ease;
}

.detail-gallery-collage {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, .75fr) minmax(0, .75fr);
    grid-template-rows: 180px 180px;
    gap: 14px;
    padding: 18px;
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(21,34,56,.10);
    border: 1px solid rgba(184,135,70,.12);
}
.detail-gallery-collage .detail-gallery-tile {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    display: block;
}
.detail-gallery-collage .detail-gallery-tile.is-large {
    grid-row: 1 / span 2;
    grid-column: 1;
}
.detail-gallery-collage img,
.detail-gallery-collage a:first-child img,
.detail-gallery-collage a:not(:first-child) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}
.gallery-more-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    background: rgba(17,24,39,.42);
    text-shadow: 0 4px 18px rgba(0,0,0,.45);
}
.hidden-lightbox-link {
    display: none !important;
}
.detail-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 24px;
}
.detail-stat {
    position: relative;
    min-height: 118px;
    padding: 18px;
    border: 1px solid rgba(184,135,70,.14);
    border-radius: 22px;
    background: linear-gradient(145deg, #fff, #fffaf3);
    box-shadow: 0 15px 35px rgba(21,34,56,.07);
    overflow: hidden;
}
.detail-stat::after {
    content: '';
    position: absolute;
    right: -35px;
    top: -40px;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: rgba(184,135,70,.08);
}
.detail-stat i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--accent);
    color: var(--primary);
    margin-bottom: 12px;
}
.detail-stat strong {
    display: block;
    color: var(--heading);
    font-size: 26px;
    line-height: 1;
    margin-bottom: 7px;
}
.detail-stat span {
    color: var(--body);
    font-weight: 700;
}
.detail-services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.detail-service-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(184,135,70,.14);
    box-shadow: 0 12px 30px rgba(21,34,56,.06);
}
.detail-service-card i {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: var(--primary);
    background: var(--accent);
    font-size: 20px;
}
.detail-service-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
.detail-service-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}
.booking-panel {
    border: 1px solid rgba(184,135,70,.16);
    background: linear-gradient(180deg, #fff, #fffaf4);
}
.guest-stepper-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.guest-stepper {
    padding: 12px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(184,135,70,.15);
}
.guest-stepper > span {
    display: block;
    color: var(--heading);
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 8px;
}
.stepper-control {
    display: grid;
    grid-template-columns: 34px 1fr 34px;
    gap: 6px;
    align-items: center;
}
.stepper-control button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--primary);
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(184,135,70,.18);
}
.stepper-control input {
    height: 34px;
    padding: 0;
    text-align: center;
    border: 0;
    background: var(--soft);
    font-weight: 900;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--secondary);
    background: #fff;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-counter {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.16);
    font-weight: 800;
}
@media (max-width: 960px) {
    .detail-gallery-collage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 230px 160px 160px;
    }
    .detail-gallery-collage .detail-gallery-tile.is-large {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .detail-stats,
    .detail-services-grid,
    .guest-stepper-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-nav {
        top: 100px;
    }
}
@media (max-width: 640px) {
    .detail-gallery-collage,
    .detail-stats,
    .detail-services-grid,
    .guest-stepper-grid {
        grid-template-columns: 1fr;
    }
    .detail-gallery-collage {
        grid-template-rows: none;
    }
    .detail-gallery-collage .detail-gallery-tile {
        height: 230px;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
}
/* Force smaller sticky header height */
body .site-header.is-sticky,
body .site-header.sticky,
body .site-header.fixed,
body .site-header.scrolled,
body .main-header.is-sticky,
body .main-header.sticky,
body .main-header.fixed,
body .main-header.scrolled,
body header.is-sticky,
body header.sticky,
body header.fixed,
body header.scrolled {
    min-height: 62px !important;
    height: 62px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition: all 0.25s ease !important;
}

/* Header inner wrapper */
body .site-header.is-sticky .container,
body .site-header.sticky .container,
body .site-header.fixed .container,
body .site-header.scrolled .container,
body .main-header.is-sticky .container,
body .main-header.sticky .container,
body .main-header.fixed .container,
body .main-header.scrolled .container,
body header.is-sticky .container,
body header.sticky .container,
body header.fixed .container,
body header.scrolled .container {
    min-height: 62px !important;
    height: 62px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Navbar row */
body .site-header.is-sticky .navbar,
body .site-header.sticky .navbar,
body .site-header.fixed .navbar,
body .site-header.scrolled .navbar,
body .main-header.is-sticky .navbar,
body .main-header.sticky .navbar,
body .main-header.fixed .navbar,
body .main-header.scrolled .navbar,
body header.is-sticky .navbar,
body header.sticky .navbar,
body header.fixed .navbar,
body header.scrolled .navbar {
    min-height: 62px !important;
    height: 62px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Logo size when sticky */
body .site-header.is-sticky img,
body .site-header.sticky img,
body .site-header.fixed img,
body .site-header.scrolled img,
body .main-header.is-sticky img,
body .main-header.sticky img,
body .main-header.fixed img,
body .main-header.scrolled img,
body header.is-sticky img,
body header.sticky img,
body header.fixed img,
body header.scrolled img {
    max-height: 42px !important;
    height: auto !important;
    width: auto !important;
    transition: all 0.25s ease !important;
}

/* Menu links smaller when sticky */
body .site-header.is-sticky a,
body .site-header.sticky a,
body .site-header.fixed a,
body .site-header.scrolled a,
body .main-header.is-sticky a,
body .main-header.sticky a,
body .main-header.fixed a,
body .main-header.scrolled a,
body header.is-sticky a,
body header.sticky a,
body header.fixed a,
body header.scrolled a {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    line-height: 1.2 !important;
}

/* Services cards: one card per row on mobile */
@media (max-width: 767px) {
    .services-grid,
    .grid.services-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .services-grid .icon-card,
    .grid.services-grid .icon-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: auto !important;
        margin: 0 !important;
    }
}

/* Tablet: optional 2 cards per row */
@media (min-width: 768px) and (max-width: 991px) {
    .services-grid,
    .grid.services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px !important;
    }
}

/* Desktop: 3 cards per row */
@media (min-width: 992px) {
    .services-grid,
    .grid.services-grid {
        display: grid !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 22px !important;
    }
}

/* Detail stats: 2 cards per row on mobile */
@media (max-width: 767px) {
    .detail-stats {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .detail-stats .detail-stat {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
    }
}

/* ===============================
   Fix Accessibility Contrast
   =============================== */

/* رابط Home النشط في القائمة */
.main-nav a.active,
.navbar a.active,
.site-nav a.active,
header nav a.active {
    color: #111827 !important;
    background-color: #f3d27a !important;
    font-weight: 700;
}

/* زر Book Now في الهيدر */
.nav-cta {
    color: #ffffff !important;
    background-color: #7a4a12 !important;
    border: 1px solid #7a4a12 !important;
    font-weight: 700;
}

.nav-cta:hover,
.nav-cta:focus {
    color: #ffffff !important;
    background-color: #5f370b !important;
    border-color: #5f370b !important;
}

/* أزرار View Gallery و Read Blog */
.btn,
a.btn {
    color: #ffffff !important;
    background-color: #7a4a12 !important;
    border: 1px solid #7a4a12 !important;
    font-weight: 700;
}

.btn:hover,
.btn:focus,
a.btn:hover,
a.btn:focus {
    color: #ffffff !important;
    background-color: #5f370b !important;
    border-color: #5f370b !important;
}

/* تحسين ظهور النص عند استخدام الأزرار فوق صور أو خلفيات */
.hero .btn,
.page-hero .btn,
.gallery .btn,
.blog .btn {
    color: #ffffff !important;
    background-color: #6b3f0f !important;
    border-color: #6b3f0f !important;
    text-shadow: none !important;
}

/* حالة التركيز من الكيبورد */
.nav-cta:focus-visible,
.btn:focus-visible,
a.btn:focus-visible,
nav a:focus-visible {
    outline: 3px solid #111827 !important;
    outline-offset: 3px;
}

