/* ============================================
   WassilaImmo – Warm Marrakech-Inspired Theme
   ============================================ */

:root {
    --gold: #c8943e;
    --gold-light: #dbb474;
    --gold-dark: #a07530;
    --brown-dark: #3a2315;
    --brown: #5c3a1e;
    --brown-light: #8b6539;
    --cream: #f5ebe0;
    --cream-light: #faf6f1;
    --cream-dark: #e8d5c0;
    --white: #ffffff;
    --black: #1a1a1a;
    --text: #3d2b1f;
    --text-light: #7a6555;
    --shadow: 0 4px 24px rgba(58, 35, 21, 0.12);
    --shadow-lg: 0 8px 40px rgba(58, 35, 21, 0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--cream-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ NAVBAR ============ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
    background: transparent;
    overflow: visible;
}

.navbar.scrolled {
    background: rgba(26, 20, 15, 0.35);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0px 0;
    box-shadow: 0 1px 0 rgba(200, 148, 62, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 120px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 220px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 1001;
    margin-top: 14px;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.02rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-light);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold-light);
}

/* navbar dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dd-icon {
    font-size: 0.7rem;
    margin-left: 5px;
    opacity: 0.85;
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-dd-icon {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    min-width: 190px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    transform: translateX(-50%) translateY(8px);
    z-index: 9999;
    list-style: none;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu li {
    margin: 0;
}
.nav-dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--dark) !important;
    font-size: 0.92rem;
    font-weight: 500;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-dropdown-menu li a::after {
    display: none !important;
}
.nav-dropdown-menu li a:hover {
    background: #f9f0e6;
    color: var(--gold) !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ============ LANGUAGE SWITCHER ============ */

.lang-switcher {
    position: relative;
    margin-left: 20px;
}

.lang-switcher-active {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cream);
    padding: 7px 14px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switcher-active:hover {
    background: rgba(255, 255, 255, 0.18);
}

.lang-switcher-active i {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.lang-switcher.open .lang-switcher-active i {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(58, 35, 21, 0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    min-width: 150px;
    z-index: 100;
}

.lang-switcher.open .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    background: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.84rem;
    color: var(--text);
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: left;
}

.lang-option:hover {
    background: var(--cream);
}

.lang-option.current {
    background: var(--cream);
    color: var(--gold-dark);
    font-weight: 600;
}

/* ============ RTL SUPPORT ============ */

body.rtl {
    direction: rtl;
}

body.rtl .nav-links {
    flex-direction: row-reverse;
}

body.rtl .lang-switcher {
    margin-left: 0;
    margin-right: 20px;
}

body.rtl .lang-dropdown {
    right: auto;
    left: 0;
}

body.rtl .lang-option {
    text-align: right;
}

body.rtl .property-card-location,
body.rtl .property-detail,
body.rtl .activity-page-card-duration {
    flex-direction: row-reverse;
}

body.rtl .property-card-details {
    flex-direction: row-reverse;
}

body.rtl .footer-col ul li i {
    margin-right: 0;
    margin-left: 8px;
}

body.rtl .footer-grid {
    direction: rtl;
}

body.rtl .search-field::after {
    right: auto;
    left: 0;
}

body.rtl .search-field select {
    background-position: left 10px center;
    padding: 13px 16px 13px 30px;
}

body.rtl .search-ornament-bl {
    left: auto;
    right: -2px;
}

body.rtl .search-ornament-bl::before {
    left: auto;
    right: 0;
    border-left: none;
    border-right: 2.5px solid var(--gold);
}

body.rtl .search-ornament-bl::after {
    left: auto;
    right: 7px;
    border-left: none;
    border-right: 2px solid var(--gold);
}

body.rtl .search-ornament-br {
    right: auto;
    left: -2px;
}

body.rtl .search-ornament-br::before {
    right: auto;
    left: 0;
    border-right: none;
    border-left: 2.5px solid var(--gold);
}

body.rtl .search-ornament-br::after {
    right: auto;
    left: 7px;
    border-right: none;
    border-left: 2px solid var(--gold);
}

body.rtl .action-btn i,
body.rtl .btn-outline-gold i {
    transform: scaleX(-1);
}

body.rtl .property-card-price,
body.rtl .activity-card-price,
body.rtl .activity-page-card-price {
    direction: ltr;
    text-align: right;
}

/* ============ HERO ============ */

.hero {
    position: relative;
    z-index: 3;
    min-height: 120vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url('../images/bg.png') center/cover no-repeat;
    padding: 120px 20px 80px;
    margin-bottom: -60px;
    padding-bottom: 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(58, 35, 21, 0.4) 0%,
        rgba(58, 35, 21, 0.25) 40%,
        rgba(58, 35, 21, 0.35) 75%,
        rgba(58, 35, 21, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    width: 100%;
    margin-bottom: 50px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
    letter-spacing: 1px;
}

.hero-glass-card {
    background: rgba(26, 20, 15, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200, 148, 62, 0.2);
    border-radius: 20px;
    padding: 32px 40px 28px;
    max-width: 760px;
    margin: 0 auto 28px;
    position: relative;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-glass-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.hero-about {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.75;
    margin-bottom: 16px;
    letter-spacing: 0.3px;
    text-shadow: none;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-shadow: none;
}

/* ============ ACTION CARDS ============ */

.action-cards {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 30px;
    max-width: 750px;
    width: 100%;
    overflow: visible;
    padding-bottom: 30px;
}

.action-card {
    flex: 1;
    background: linear-gradient(170deg, #3e2213 0%, #985835 40%, #cc7a45 100%);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(200, 148, 62, 0.2);
    box-shadow:
        0 8px 28px rgba(30, 15, 8, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: visible;
    position: relative;
}

.action-card:last-child {
    background: linear-gradient(170deg, #cc7a45 0%, #985835 40%, #3e2213 100%);
    border-color: rgba(200, 148, 62, 0.25);
}

.action-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(30, 15, 8, 0.5);
}

.action-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--gold-light);
}

.action-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
}

.action-card p {
    font-size: 0.84rem;
    color: var(--cream-dark);
    margin-bottom: 22px;
    line-height: 1.5;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 26px;
    border-radius: 10px;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.action-card-links-wrap {
    position: relative;
    display: inline-block;
    z-index: 100;
}

.action-card-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 280px;
    padding: 8px;
    background: rgba(40, 22, 12, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 148, 62, 0.25);
    border-radius: 14px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
}

.action-card-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) scale(1);
}

.action-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.action-link i {
    color: var(--gold-light);
    font-size: 0.88rem;
    width: 20px;
    text-align: center;
}

.action-link:hover {
    background: rgba(200, 148, 62, 0.18);
    color: var(--white);
}

.btn-gold {
    
    background: linear-gradient(135deg, #3a2315 0%, #2a1810 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 3px 10px rgba(150, 112, 31, 0.3);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #a07530 0%, #7d5e18 100%);
    box-shadow: 0 4px 14px rgba(150, 112, 31, 0.45);
}

.btn-dark {
    background: linear-gradient(135deg, #3a2315 0%, #2a1810 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 3px 10px rgba(42, 24, 16, 0.3);
}

.btn-dark:hover {
    background: linear-gradient(135deg, #4a3020 0%, #3a2315 100%);
    box-shadow: 0 4px 14px rgba(42, 24, 16, 0.45);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--gold);
    color: var(--gold);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    background: transparent;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

/* ============ SEARCH BAR ============ */

.search-bar {
    position: relative;
    max-width: 820px;
    width: 100%;
    margin: 30px auto 0;
    padding: 8px;
}

.search-bar-inner {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 4px 5px 4px 10px;
    border: 1.5px solid var(--gold-light);
    box-shadow: 0 4px 24px rgba(58, 35, 21, 0.18);
}

.search-ornament {
    position: absolute;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.search-ornament::before,
.search-ornament::after {
    content: '';
    position: absolute;
}

.search-ornament-bl {
    bottom: -2px;
    left: -2px;
}

.search-ornament-bl::before {
    bottom: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border-left: 2.5px solid var(--gold);
    border-bottom: 2.5px solid var(--gold);
    border-radius: 0 0 0 5px;
}

.search-ornament-bl::after {
    bottom: 7px;
    left: 7px;
    width: 16px;
    height: 16px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    border-radius: 0 0 0 3px;
    opacity: 0.45;
}

.search-ornament-br {
    bottom: -2px;
    right: -2px;
}

.search-ornament-br::before {
    bottom: 0;
    right: 0;
    width: 32px;
    height: 32px;
    border-right: 2.5px solid var(--gold);
    border-bottom: 2.5px solid var(--gold);
    border-radius: 0 0 5px 0;
}

.search-ornament-br::after {
    bottom: 7px;
    right: 7px;
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    border-radius: 0 0 3px 0;
    opacity: 0.45;
}

.search-field {
    flex: 1;
    position: relative;
}

.search-field::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: var(--cream-dark);
}

.search-field:last-of-type::after {
    display: none;
}

.search-field select {
    width: 100%;
    padding: 13px 16px;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    color: var(--gold-dark);
    font-weight: 500;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24'%3E%3Cpath fill='%23a07530' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.search-field select option {
    background: var(--white);
    color: var(--text);
}

.search-field select:focus {
    outline: none;
}

.search-btn {
    padding: 12px 26px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(200, 148, 62, 0.35);
    flex-shrink: 0;
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, #8a6428 100%);
    box-shadow: 0 4px 18px rgba(200, 148, 62, 0.5);
    transform: translateY(-1px);
}

/* ============ SECTIONS ============ */

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--brown-dark);
    margin-bottom: 12px;
}

.section-desc {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.featured-section {
    background: linear-gradient(180deg, #f0e0cc 0%, #e8d2b8 50%, #f0e0cc 100%);
    position: relative;
    z-index: 2;
}

.prestige-section {
    background: #2a1810;
    position: relative;
    color: var(--cream);
    overflow: hidden;
}

.prestige-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(200, 148, 62, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 100% 50%, rgba(200, 148, 62, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 0%, rgba(200, 148, 62, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(200, 148, 62, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.prestige-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(200, 148, 62, 0.08) 0%,
            transparent 8%,
            transparent 92%,
            rgba(200, 148, 62, 0.08) 100%
        );
    pointer-events: none;
}

.prestige-section .container {
    position: relative;
    z-index: 1;
}

.prestige-section .section-title {
    color: var(--cream);
    font-size: 2.4rem;
}

.prestige-section .property-card {
    background: rgba(62, 38, 22, 0.7);
    border: 1px solid rgba(200, 148, 62, 0.2);
    backdrop-filter: blur(8px);
}

.prestige-section .property-card:hover {
    border-color: rgba(200, 148, 62, 0.4);
}

.prestige-section .property-card-body {
    padding: 18px;
}

.prestige-section .property-card-title {
    color: var(--cream);
    font-size: 1.08rem;
}

.prestige-section .property-card-location {
    color: rgba(219, 180, 116, 0.75);
}

.prestige-section .property-card-location i {
    color: var(--gold-light);
}

.prestige-section .property-card-details {
    border-bottom-color: rgba(200, 148, 62, 0.15);
}

.prestige-section .property-detail {
    color: rgba(245, 235, 224, 0.6);
}

.prestige-section .property-detail i {
    color: var(--gold-light);
}

.prestige-section .property-card-price {
    color: var(--cream);
    font-weight: 700;
}

.prestige-section .btn-outline-gold {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.prestige-section .btn-outline-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.prestige-section .btn-reserve {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--brown-dark);
    font-weight: 700;
}

.prestige-section .btn-reserve:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.activities-section {
    background: var(--cream-light);
}

/* ============ PROPERTY CARDS ============ */

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.property-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.property-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-card-img img {
    transform: scale(1.05);
}

/* --- carousel --- */
.card-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-carousel .carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.card-carousel .carousel-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0,0,0,0.35);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.property-card:hover .carousel-btn {
    opacity: 1;
}

.carousel-prev { left: 6px; }
.carousel-next { right: 6px; }

.carousel-btn:hover {
    background: rgba(0,0,0,0.6);
}

.carousel-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
    z-index: 3;
    max-width: 80%;
    overflow: hidden;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.4);
}

.property-extras {
    font-size: 0.8rem;
    color: var(--gold);
    padding: 0 16px 4px;
    display: block;
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--white);
    text-transform: capitalize;
}

.badge-court {
    background: var(--gold);
}

.badge-longue {
    background: var(--brown);
}

.badge-vente {
    background: #2d6a4f;
}

.badge-prestige {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.badge-projet {
    background: #457b9d;
}

.property-card-body {
    padding: 18px;
}

.property-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 6px;
}

.property-card-location {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.property-card-location i {
    color: var(--gold);
    font-size: 0.75rem;
}

.property-card-details {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--cream-dark);
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    color: var(--text-light);
}

.property-detail i {
    color: var(--gold);
    font-size: 0.72rem;
}

.property-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.property-card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--brown-dark);
}

.property-card-price span {
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--text-light);
}

.btn-reserve {
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background: linear-gradient(135deg, #c8943e 0%, #a07530 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(200, 148, 62, 0.25);
}

.btn-reserve:hover {
    background: linear-gradient(135deg, #b8862e 0%, #8b6539 100%);
    box-shadow: 0 4px 14px rgba(200, 148, 62, 0.4);
    transform: translateY(-1px);
}

.btn-reserve-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 12px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background: linear-gradient(135deg, #25d366 0%, #128c4e 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-reserve-submit i {
    font-size: 1.2rem;
}

.btn-reserve-submit:hover {
    background: linear-gradient(135deg, #22c55e 0%, #0f7a42 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transform: translateY(-2px);
}

/* ============ ACTIVITY CARDS ============ */

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.activity-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover img {
    transform: scale(1.08);
}

.activity-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(58, 35, 21, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.activity-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.activity-card-desc {
    font-size: 0.82rem;
    color: var(--cream);
}

.activity-card-price {
    margin-top: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* ============ MODAL ============ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--brown-dark);
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.modal-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.modal {
    position: relative;
}

/* ============ FORMS ============ */

.submit-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--brown-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    transition: var(--transition);
    background: var(--cream-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 148, 62, 0.12);
}

.form-group textarea {
    resize: vertical;
}

/* ============ PAGE HEADER (sub-pages) ============ */

.page-header {
    background: url('../images/bg.png') center/cover no-repeat;
    position: relative;
    padding: 160px 20px 80px;
    text-align: center;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(58, 35, 21, 0.6) 0%, rgba(58, 35, 21, 0.75) 100%);
}

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

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.05rem;
    color: var(--cream);
}

/* ============ FILTERS BAR (sub-pages) ============ */

.filters-bar {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.filters-bar select,
.filters-bar input {
    flex: 1;
    min-width: 160px;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-dark);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--cream-light);
}

.filters-bar select:focus,
.filters-bar input:focus {
    outline: none;
    border-color: var(--gold);
}

.filters-bar button {
    padding: 12px 28px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filters-bar button:hover {
    background: var(--gold-dark);
}

/* ============ LISTINGS GRID (sub-pages) ============ */

.listings-section {
    padding: 60px 0 80px;
    background: var(--cream-light);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
    font-size: 1rem;
}

/* ============ ACTIVITY PAGE CARDS ============ */

.activity-page-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.activity-page-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.activity-page-card-img {
    height: 220px;
    overflow: hidden;
}
.activity-page-card-img.pack-img {
    height: 380px;
    background: linear-gradient(135deg, #f5e6d3, #e8d5c0);
}
.activity-page-card-img.pack-img img {
    object-fit: contain;
}

.activity-page-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.activity-page-card:hover .activity-page-card-img img {
    transform: scale(1.05);
}

.activity-page-card-body {
    padding: 20px;
}

.activity-page-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--brown-dark);
    margin-bottom: 8px;
}

.activity-page-card-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    margin-bottom: 14px;
    line-height: 1.5;
}

.activity-page-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.activity-page-card-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.activity-page-card-duration {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.activity-page-card-duration i {
    color: var(--gold);
}

/* ============ TOAST ============ */

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--brown-dark);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast i {
    color: var(--gold-light);
    margin-right: 8px;
}

/* ============ FOOTER ============ */

.footer {
    background: var(--brown-dark);
    color: var(--cream);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    margin-bottom: 14px;
}

.footer-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--gold);
    width: 16px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 992px) {
    .properties-grid,
    .activities-grid,
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-logo img {
        height: 90px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(58, 35, 21, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .nav-toggle {
        display: block;
    }

    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(255,255,255,0.06);
        border-radius: 8px;
        min-width: auto;
        padding: 4px 0;
        display: none;
        margin-top: 6px;
    }
    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
    .nav-dropdown-menu li a {
        color: var(--cream) !important;
        padding: 8px 18px;
        font-size: 0.88rem;
    }
    .nav-dropdown-menu li a:hover {
        background: rgba(255,255,255,0.1);
        color: var(--gold-light) !important;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 12px;
    }

    body.rtl .lang-switcher {
        margin-left: 12px;
        margin-right: auto;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-glass-card {
        padding: 24px 22px 20px;
        margin: 0 auto 20px;
        border-radius: 16px;
    }

    .hero-about {
        font-size: 1.1rem;
    }

    .hero-subtitle {
        font-size: 0.78rem;
        letter-spacing: 1.5px;
    }

    .action-cards {
        flex-direction: column;
        gap: 16px;
    }

    .search-bar {
        margin-top: 20px;
        padding: 4px;
    }

    .search-bar-inner {
        flex-direction: column;
        border-radius: var(--radius);
        padding: 12px;
        gap: 6px;
    }

    .search-ornament {
        display: none;
    }

    .search-field::after {
        display: none;
    }

    .search-field {
        width: 100%;
    }

    .search-field select {
        padding: 11px 16px;
        border: 1px solid var(--cream-dark);
        border-radius: 8px;
        background-color: var(--white);
    }

    .search-btn {
        width: 100%;
        border-radius: 8px;
        padding: 12px;
    }

    .properties-grid,
    .activities-grid,
    .listings-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .submit-form .form-row {
        grid-template-columns: 1fr;
    }

    .modal {
        padding: 28px 20px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .filters-bar {
        flex-direction: column;
    }

    .filters-bar select,
    .filters-bar input {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .action-card {
        padding: 24px 20px;
    }
}

/* ============ PROJECT SHOWCASE ============ */

.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
    margin-bottom: 48px;
    border: 1px solid rgba(193,154,107,0.15);
}

.project-showcase-gallery {
    position: relative;
    min-height: 450px;
}

.project-showcase-gallery .card-carousel {
    position: absolute;
    inset: 0;
}

.project-showcase-gallery .carousel-btn {
    opacity: 1;
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.4);
}

.project-showcase-gallery .property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 4;
}

.project-showcase-info {
    padding: 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    max-height: 600px;
}

.project-showcase-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brown-dark);
    margin: 0;
}

.project-showcase-location {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.project-showcase-location i {
    color: var(--gold);
    margin-right: 6px;
}

.project-showcase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.project-price,
.project-delivery {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--brown-dark);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 6px 14px;
    border-radius: 20px;
}

.project-price i,
.project-delivery i {
    margin-right: 5px;
}

.project-showcase-desc {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--text);
    margin: 0;
}

.project-section {
    margin-top: 8px;
}

.project-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown-dark);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--gold-light);
    display: inline-block;
}

.project-section h4 i {
    color: var(--gold);
    margin-right: 6px;
}

.project-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.project-amenities li {
    font-size: 0.85rem;
    color: var(--text);
    padding: 6px 0;
}

.project-amenities li i {
    color: var(--gold);
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

.project-typo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.project-typo-card {
    background: linear-gradient(135deg, #faf6f0, #f5ede3);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(193,154,107,0.2);
}

.typo-type {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brown-dark);
}

.typo-area {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gold);
}

.typo-detail {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.project-payment-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #faf6f0;
    padding: 8px 14px;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.payment-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--brown-dark);
}

.payment-detail {
    font-size: 0.85rem;
    color: var(--text);
}

.btn-reserve-project {
    margin-top: 12px;
    align-self: flex-start;
    background: linear-gradient(135deg, var(--gold), #d4a94d);
    color: var(--brown-dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 36px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(193,154,107,0.35);
}

.btn-reserve-project:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193,154,107,0.5);
}

@media (max-width: 900px) {
    .project-showcase {
        grid-template-columns: 1fr;
    }
    .project-showcase-gallery {
        min-height: 280px;
    }
    .project-showcase-info {
        padding: 24px 20px;
        max-height: none;
    }
    .project-amenities {
        grid-template-columns: 1fr;
    }
}

body.rtl .project-amenities li i {
    margin-right: 0;
    margin-left: 8px;
}

body.rtl .project-showcase-location i {
    margin-right: 0;
    margin-left: 6px;
}

body.rtl .project-price i,
body.rtl .project-delivery i {
    margin-right: 0;
    margin-left: 5px;
}

body.rtl .project-section h4 i {
    margin-right: 0;
    margin-left: 6px;
}

body.rtl .payment-row {
    border-left: none;
    border-right: 3px solid var(--gold);
}

body.rtl .nav-dd-icon {
    margin-left: 0;
    margin-right: 3px;
}

/* coming soon placeholder */
.coming-soon-box {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
}
.coming-soon-box i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.coming-soon-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
}
.coming-soon-box p {
    color: #7a6a5a;
    font-size: 1.05rem;
    line-height: 1.6;
}
body.rtl .restaurant-card-badge i {
    margin-right: 0;
    margin-left: 5px;
}
body.rtl .restaurant-card-location i {
    margin-right: 0;
    margin-left: 4px;
}

/* ============ RESTAURANTS SECTION ============ */

.restaurants-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #fdf6ef 0%, #f9efe4 100%);
}

.section-header-center {
    text-align: center;
    margin-bottom: 40px;
}
.section-header-center h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.section-header-center p {
    color: #7a6a5a;
    font-size: 1.05rem;
}

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

.restaurant-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.restaurant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.restaurant-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.restaurant-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.restaurant-card:hover .restaurant-card-img img {
    transform: scale(1.08);
}

.restaurant-card-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
}
.restaurant-card-badge i {
    margin-right: 5px;
    color: var(--gold);
}

.restaurant-card-body {
    padding: 18px 20px 20px;
}

.restaurant-card-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.restaurant-card-desc {
    color: #7a6a5a;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 14px;
}

.restaurant-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.restaurant-card-location {
    color: #9a8a7a;
    font-size: 0.85rem;
}
.restaurant-card-location i {
    color: var(--gold);
    margin-right: 4px;
}

.btn-reserve-restaurant {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}
.btn-reserve-restaurant:hover {
    background: #1da851;
    transform: scale(1.04);
}

@media (max-width: 992px) {
    .restaurants-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .restaurants-grid {
        grid-template-columns: 1fr;
    }
    .section-header-center h2 {
        font-size: 1.7rem;
    }
}

body.rtl .restaurant-card-badge i {
    margin-right: 0;
    margin-left: 5px;
}
body.rtl .restaurant-card-location i {
    margin-right: 0;
    margin-left: 4px;
}
