:root {
    --navy: #0b2b55;
    --navy-2: #0c2342;
    --gold: #d4a33a;
    --gold-dark: #bd8d23;
    --soft-gold: #f5ead0;
    --text: #22324a;
    --muted: #6d7890;
    --line: #e3e8ef;
    --light: #f4f7fb;
    --white: #ffffff;
    --dark: #10233f;
    --shadow: 0 18px 45px rgba(10, 35, 70, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 14px;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(10, 35, 70, 0.08);
    box-shadow: 0 8px 28px rgba(14, 35, 65, 0.04);
}

.nav-shell {
    display: grid;
    grid-template-columns: 190px 1fr auto;
    align-items: center;
    max-width: 1140px;
    min-height: 74px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    color: var(--navy);
    font-weight: 800;
    text-transform: uppercase;
}

.logo-tower {
    color: var(--gold);
    font-size: 28px;
    line-height: 1;
}

.logo-name {
    font-size: 9px;
    line-height: 1.05;
    letter-spacing: 0.02em;
}


.logo-img{
    height:70px;
    width:auto;
    object-fit:contain;
    display:block;
}



.video-section{
    padding:90px 20px;
    background:#003473;
}

.video-container{
    max-width:1100px;
    margin:auto;
}

.video-title{
    text-align:center;
    margin-bottom:40px;
}

.video-title h2{
    color:#fff;
    font-size:42px;
    margin:15px 0 10px;
    font-weight:800;
}

.video-title p{
    color:#f3f3f3;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.video-box{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 60px rgba(0,0,155,0.15);
}

.video-box video{
    width:100%;
    display:block;
}













.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    margin: 0;
    padding: 0;
    color: #4d5a70;
    font-size: 16px;
    font-weight: 600;
    list-style: none;
}

.main-menu a:hover {
    color: var(--gold-dark);
}

.gallery-slider{
    position:relative;
    max-width:1100px;
    margin:0 auto;
    overflow:hidden;
}

.gallery-track{
    display:flex;
    gap:22px;
    overflow-x:hidden;
    scroll-behavior:smooth;
    padding:10px 0 25px;
}

.gallery-track img{
    flex:0 0 320px;
    width:320px !important;
    max-width:320px !important;
    height:230px !important;
    object-fit:cover;
    border-radius:16px;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(10,35,70,0.12);
}

.gallery-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border:0;
    border-radius:50%;
    background:#d4a33a;
    color:#fff;
    font-size:34px;
    cursor:pointer;
    z-index:10;
}

.gallery-btn.prev{ left:10px; }
.gallery-btn.next{ right:10px; }

.gallery-lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.85);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999999;
    padding:20px;
}

.gallery-lightbox img{
    width:auto !important;
    max-width:95% !important;
    max-height:90vh !important;
    object-fit:contain;
    border-radius:12px;
}

.gallery-close{
    position:absolute;
    top:25px;
    right:35px;
    color:#fff;
    font-size:44px;
    cursor:pointer;
}

@media(max-width:768px){
    .gallery-track img{
        flex:0 0 85%;
        width:85% !important;
        max-width:85% !important;
        height:230px !important;
    }
}
.gallery-section{
    padding:120px 20px 120px;
    background:#ffffff;
}
.reserve-btn,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border: 0;
    border-radius: 9px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.reserve-btn {
    justify-self: end;
    min-width: 116px;
    color: var(--white);
    background: var(--gold);
    box-shadow: 0 14px 30px rgba(212, 163, 58, 0.28);
}

.btn:hover,
.reserve-btn:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 778px;
    padding: 120px 24px;
    overflow: hidden;
    background: url('files/11.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 20, 25, 0.35), rgba(10, 20, 25, 0.15)), rgba(7, 19, 35, 0.34);
}


.hero-card {
    position: relative;
    z-index: 1;
    width: min(640px, 92vw);
    margin-top: 130px;
    padding: 48px 52px 48px;
    background: rgba(255, 255, 255, 0.96);
    border-left: 4px solid var(--gold);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 24px;
    color: var(--gold-dark);
    background: rgba(245, 234, 208, 0.72);
    border: 1px solid rgba(212, 163, 58, 0.36);
    border-radius: 999px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.pill.small {
    min-height: 40px;
    padding: 0 18px;
    font-size: 14px;
}

.hero-card h1,
.section-title h2,
.project-copy h2,
.reservation h2,
.location-section h2 {
    color: var(--navy);
    line-height: 1.14;
    letter-spacing: -0.045em;
}

.hero-card h1 {
    max-width: 520px;
    margin: 25px 0 25px;
    font-size: clamp(40px, 4.8vw, 50px);
    font-weight: 600;
}

.hero-card h1 span,
.project-copy h2 span {
    color: var(--gold);
}

.hero-card p {
    margin: 0;
    color: #5b667a;
    font-size: 20px;
}

.hero-card strong {
    color: var(--navy);
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn-gold {
    min-width: 226px;
    padding: 0 22px;
    color: var(--white);
    background: var(--gold);
    box-shadow: 0 14px 28px rgba(212, 163, 58, 0.26);
}

.btn-white {
    min-width: 266px;
    padding: 0 22px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid #dce2ea;
    box-shadow: 0 8px 18px rgba(10, 35, 70, 0.08);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 100%;
    background: var(--white);
    border-bottom: 1px solid #e5e9ef;
}

.stats-strip article {
    display: grid;
    place-items: center;
    min-height: 98px;
    border-right: 1px solid #e3e8ef;
    text-align: center;
}

.stats-strip article:last-child {
    border-right: 0;
}

.stats-strip strong {
    color: var(--navy);
    font-size: 26px;
    line-height: 1.15;
}

.stats-strip span {
    color: #68748a;
    font-size: 15px;
}

.section {
    padding: 82px 24px;
}

.light-section,
.apartments-section {
    background: var(--light);
}

.section-title {
    max-width: 560px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-title h2,
.location-section h2 {
    position: relative;
    margin: 14px 0 22px;
    font-size: 32px;
    font-weight: 800;
}

.section-title h2::after,
.location-section h2::after {
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 50px;
    height: 2px;
    content: '';
    background: var(--gold);
    transform: translateX(-50%);
}

.section-title p,
.location-section .section-title p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.amenity-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    max-width:1120px;
    margin:0 auto;
}

.amenity-card{
    min-height:220px;
    padding:35px 28px;
    background:#fff;
    border:1px solid #edf1f6;
    border-bottom:3px solid #d4a33a;
    border-radius:12px;
    box-shadow:0 12px 28px rgba(10,35,70,0.05);

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    text-align:right;
    transition:.35s ease;
}

.icon-box{
    width:58px;
    height:58px;
    border-radius:14px;
    background:#f4f7fb;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#d4a33a;
    font-size:24px;

    margin-bottom:22px;

    transition:.35s ease;
}

.amenity-card h3{
    margin:0 0 12px;
    color:#0b2b55;
    font-size:26px;
    font-weight:800;
    line-height:1.8;
    text-align:right;
    width:100%;
}

.amenity-card p{
    margin:0;
    color:#66738a;
    font-size:15px;
    line-height:2;
    text-align:right;
    width:100%;
}

/* HOVER EFFECT */
.amenity-card:hover{
    transform:translateY(-10px);
    box-shadow:0 24px 50px rgba(10,35,70,0.12);
    border-bottom-color:#0b2b55;
}

.amenity-card:hover .icon-box{
    background:#d4a33a;
    color:#fff;
    transform:scale(1.08);
}

/* MOBILE */
@media(max-width:980px){

    .amenity-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:720px){

    .amenity-grid{
        grid-template-columns:1fr;
    }

}
.apartment-footer a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 18px;
    border:2px solid #d4a33a;
    border-radius:30px;
    color:#d4a33a;
    font-weight:800;
    transition:.3s;
}

.apartment-footer a:hover{
    background:#d4a33a;
    color:#fff;
}
.text-arrow{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:12px 22px;

    border:2px solid #d4a33a;
    border-radius:40px;

    color:#0b2b55;
    font-weight:800;

    transition:.3s;
}

.text-arrow:hover{
    background:#d4a33a;
    color:#fff;
    transform:translateY(-3px);
}
.amenity-card h3{
    line-height:1.8;
}

.amenity-card p{
    line-height:1.8;
}
.icon-box {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    color: var(--gold);
    background: #edf1f6;
    border-radius: 7px;
    font-size: 22px;
    font-weight: 800;
}

.amenity-card h3,
.access-list h3,
.apartment-card h3,
.sales-office h3 {
    margin: 0;
    color: var(--navy);
    font-size: 15px;
    font-weight: 800;
}

.amenity-card p {
    margin: 12px 0 0;
    color: #66738a;
    font-size: 13px;
}

.project-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 70px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 110px 24px;
}

.project-image {
    position: relative;
    border-radius: 12px;
}

.project-image::before,
.project-image::after {
    position: absolute;
    content: '';
    background: #f4e3c0;
    border-radius: 5px;
    z-index: -1;
}

.project-image::before {
    top: -14px;
    left: -14px;
    width: 68px;
    height: 68px;
}

.project-image::after {
    right: -14px;
    bottom: -14px;
    width: 68px;
    height: 68px;
    background: #dfe5ed;
}

.project-image img {
    height: 430px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(10, 35, 70, 0.16);
}

.project-copy h2 {
    margin: 16px 0 20px;
    font-size: 36px;
    font-weight: 800;
}

.project-copy p {
    margin: 0 0 18px;
    color: #5f6b80;
    font-size: 15px;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 26px 0 22px;
    padding: 0;
    color: #344157;
    list-style: none;
}

.check-list li::before {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    margin-right: 12px;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 50%;
    content: '✓';
    font-size: 10px;
    font-weight: 800;
}

.text-arrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--navy);
    border-bottom: 1px solid var(--gold);
    font-weight: 800;
}

.apartments-section {
    padding-top: 86px;
}

.apartment-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.apartment-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid #dce3ed;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(10, 35, 70, 0.08);
}

.apartment-image {
    position: relative;
    height: 180px;
    overflow: hidden;
	
}

.apartment-image img {
    height: 100%;
    object-fit: cover;
}

.apartment-image span {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 7px 10px;
    color: var(--white);
    background: var(--gold);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
}

.apartment-body {
    padding: 26px 28px 28px;
}

.apartment-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #edf1f6;
}

.apartment-heading h3 {
    font-size: 20px;
}

.apartment-heading p {
    margin: 2px 0 0;
    color: #8792a6;
    font-size: 13px;
}

.apartment-heading strong {
    color: var(--gold);
    font-size: 28px;
    white-space: nowrap;
}

.feature-list {
    display: grid;
    gap: 10px;
    margin: 18px 0 24px;
    padding: 0;
    color: #5e6a80;
    list-style: none;
    font-size: 13px;
}

.feature-list li::before {
    margin-right: 9px;
    color: var(--gold);
    content: '⊞';
}

.apartment-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
}

.apartment-footer b,
.apartment-footer a {
    color: var(--navy);
    font-weight: 800;
}

.apartment-footer a {
    color: var(--gold-dark);
}

.note {
    margin: 28px 0 0;
    color: #97a0b0;
    font-size: 12px;
    font-style: italic;
    text-align: center;
}

.location-section {
    padding: 72px 24px 78px;
    background: var(--white);
}

.location-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 110px;
    align-items: center;
    max-width: 880px;
    margin: 0 auto;
}

.access-list h3 {
    margin-bottom: 18px;
}

.access-list article {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    margin-bottom: 15px;
    align-items: center;
}

.access-list article span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: var(--gold);
    background: #f4f7fb;
    border-radius: 7px;
    font-weight: 800;
}

.access-list strong {
    display: block;
    color: var(--navy);
    font-size: 12px;
}

.access-list small {
    display: block;
    color: #69748a;
    font-size: 11px;
}
.map-image-card{
    display:block;
    min-height:250px;
    padding:0;
    overflow:hidden;
    background:none;
}

.map-image-card::before{
    display:none;
}

.map-image-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:8px;
    transition:0.3s;
}

.map-image-card:hover img{
    transform:scale(1.04);
}
.small-btn {
    min-width: 150px;
    min-height: 42px;
    margin-top: 10px;
    padding: 0 14px;
    font-size: 12px;
}

.map-card,
.office-map {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 250px;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(28deg, transparent 48%, rgba(255,255,255,0.16) 49%, transparent 50%) 0 0/80px 80px,
        linear-gradient(118deg, transparent 48%, rgba(255,255,255,0.14) 49%, transparent 50%) 0 0/90px 90px,
        #9ab1a7;
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(10, 35, 70, 0.18);
    text-align: center;
}

.map-card::before,
.office-map::before {
    position: absolute;
    inset: 0;
    content: '';
    background: rgba(56, 86, 74, 0.22);
}

.map-card strong,
.map-card span,
.map-pin,
.office-map {
    position: relative;
    z-index: 1;
}

.map-card strong,
.map-card span {
    width: 230px;
    margin-top: -28px;
    padding: 0 12px;
    background: rgba(255,255,255,0.16);
}

.map-card strong {
    padding-top: 28px;
    border-radius: 8px 8px 0 0;
    font-size: 13px;
}

.map-card span {
    padding-bottom: 28px;
    border-radius: 0 0 8px 8px;
    font-size: 11px;
}

.map-pin {
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 36px;
    font-weight: 800;
}

.contact-section {
    padding: 72px 24px 0;
    color: var(--white);
    background: #10233f;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 410px;
    gap: 72px;
    max-width: 1120px;
    margin: 0 auto;
}

.reservation h2 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 30px;
    font-weight: 800;
}

.reservation p {
    max-width: 520px;
    margin: 0 0 26px;
    color: #c7d2e3;
    font-size: 13px;
}

form {
    display: grid;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    color: #f3f6fb;
    font-size: 12px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    color: var(--white);
    background: #1b3150;
    border: 1px solid #48617f;
    border-radius: 5px;
    padding: 12px 13px;
    font: inherit;
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: #9ba9bb;
}

select {
    color: var(--white);
}

textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    margin-top: 2px;
}

.alert {
    padding: 11px 13px;
    border-radius: 6px;
    font-weight: 700;
}

.alert.success {
    color: #0f5132;
    background: #d1e7dd;
}

.alert.error {
    color: #842029;
    background: #f8d7da;
}

.sales-office h3 {
    margin-bottom: 24px;
    color: var(--gold);
}

.sales-office ul {
    display: grid;
    gap: 17px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.sales-office li {
    position: relative;
    padding-left: 34px;
    color: #d8e1ef;
    font-size: 13px;
}

.sales-office li span {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
}

.sales-office b,
.sales-office a {
    color: var(--white);
    font-weight: 800;
}

.office-map {
    min-height: 126px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    box-shadow: none;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1120px;
    margin: 58px auto 0;
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,0.14);
    color: #8ea0b8;
    font-size: 11px;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #c8d4e4;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-logo span {
    color: var(--gold);
}

.footer p {
    margin: 0;
}

.footer a {
    text-decoration: underline;
}

.socials {
    display: flex;
    gap: 8px;
}

.socials a {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid #526782;
    border-radius: 5px;
    text-decoration: none;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .nav-shell {
        grid-template-columns: 1fr auto auto;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 40px;
        padding: 0 14px;
        color: var(--navy);
        background: #eef2f6;
        border: 0;
        border-radius: 8px;
        font-weight: 800;
    }

    .main-menu {
        position: absolute;
        top: 74px;
        right: 24px;
        left: 24px;
        display: none;
        flex-direction: column;
        gap: 0;
        align-items: stretch;
        padding: 10px;
        background: var(--white);
        border: 1px solid #e2e7ef;
        border-radius: 12px;
        box-shadow: var(--shadow);
    }

    .main-menu.open {
        display: flex;
    }

    .main-menu a {
        display: block;
        padding: 12px 14px;
    }

    .hero {
        min-height: 680px;
    }

    .hero-card {
        margin-top: 50px;
    }

    .amenity-grid,
    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-section,
    .location-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .location-layout {
        max-width: 680px;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 13px;
    }

    .nav-shell {
        min-height: 68px;
        padding: 0 14px;
    }

    .reserve-btn {
        min-width: 92px;
        min-height: 40px;
    }

    .main-menu {
        top: 68px;
        right: 14px;
        left: 14px;
    }

    .hero {
        min-height: 620px;
        padding: 72px 16px;
    }

    .hero-card {
        width: 100%;
        padding: 34px 26px;
    }

    .hero-card h1 {
        font-size: 32px;
    }

    .hero-card p {
        font-size: 16px;
    }

    .hero-actions,
    .footer {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-gold,
    .btn-white {
        width: 100%;
        min-width: 0;
    }

    .stats-strip,
    .amenity-grid,
    .apartment-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-strip article {
        border-right: 0;
        border-bottom: 1px solid #e3e8ef;
    }

    .section,
    .project-section,
    .location-section,
    .contact-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .project-image img,
    .apartment-image {
        height: 260px;
    }

    .apartment-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* Language selector and RTL support */
.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 12px;
    color: var(--navy);
    background: #eef2f6;
    border: 1px solid #dce3ed;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 800;
}

.language-switcher span {
    color: var(--muted);
    font-size: 10px;
}

:where([dir="rtl"]) body,
body.lang-ar {
    font-family: "Noto Kufi Arabic", Inter, Arial, sans-serif;
}

:where([dir="rtl"]) .hero-card {
    border-left: 0;
    border-right: 4px solid var(--gold);
    text-align: right;
}

:where([dir="rtl"]) .hero-actions,
:where([dir="rtl"]) .apartment-footer,
:where([dir="rtl"]) .footer,
:where([dir="rtl"]) .nav-actions {
    flex-direction: row-reverse;
}

:where([dir="rtl"]) .project-copy,
:where([dir="rtl"]) .access-list,
:where([dir="rtl"]) .reservation,
:where([dir="rtl"]) .sales-office,
:where([dir="rtl"]) .amenity-card {
    text-align: right;
}

:where([dir="rtl"]) .check-list li::before,
:where([dir="rtl"]) .feature-list li::before {
    margin-right: 0;
    margin-left: 12px;
}

:where([dir="rtl"]) .sales-office li {
    padding-left: 0;
    padding-right: 34px;
}

:where([dir="rtl"]) .sales-office li span {
    left: auto;
    right: 0;
}

:where([dir="rtl"]) .access-list article {
    grid-template-columns: 1fr 34px;
}

:where([dir="rtl"]) .access-list article span {
    grid-column: 2;
    grid-row: 1;
}

:where([dir="rtl"]) .access-list article div {
    grid-column: 1;
    grid-row: 1;
}

:where([dir="rtl"]) input,
:where([dir="rtl"]) select,
:where([dir="rtl"]) textarea {
    text-align: right;
}

@media (max-width: 980px) {
    .nav-shell {
        grid-template-columns: 1fr auto auto;
    }

    .nav-actions {
        gap: 8px;
    }

    .language-switcher span {
        display: none;
    }
}

@media (max-width: 720px) {
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .language-switcher,
    .reserve-btn {
        min-width: 84px;
        min-height: 38px;
    }

    :where([dir="rtl"]) .hero-actions,
    :where([dir="rtl"]) .apartment-footer,
    :where([dir="rtl"]) .footer,
    :where([dir="rtl"]) .nav-actions {
        flex-direction: column;
    }
}
