/* ============================================================
   MAMO Property — Winter Sun Hurghada Resort Living
   Multilingual High-Performance Stylesheet
   ============================================================ */

:root {
    --primary: #0a2540;
    --primary-light: #13395e;
    --accent: #0077b6;
    --accent-light: #0096c7;
    --sun-gold: #f59e0b;
    --sun-gold-hover: #d97706;
    --warm-coral: #e76f51;
    --success: #10b981;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.06);
    --shadow-md: 0 10px 30px rgba(10, 37, 64, 0.08);
    --shadow-lg: 0 20px 45px rgba(10, 37, 64, 0.12);
    --transition: all 0.25s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    direction: ltr;
    overflow-x: hidden;
}

body.rtl {
    direction: rtl;
    font-family: 'Cairo', 'Outfit', sans-serif;
}

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

/* ================= Top Bar & Switchers ================= */
.top-bar {
    background: var(--primary);
    color: #fff;
    padding: 10px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 100;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-announcement {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    background: var(--sun-gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(245, 158, 11, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.top-switchers {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-selector, .curr-selector {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 2px;
    gap: 2px;
}

.lang-btn, .curr-btn {
    background: none;
    border: none;
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.lang-btn:hover, .curr-btn:hover {
    color: #fff;
}

.lang-btn.active, .curr-btn.active {
    background: var(--sun-gold);
    color: var(--primary);
    font-weight: 700;
}

/* ================= Navbar ================= */
.navbar {
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 99;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-nav-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 9px 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-nav-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

/* ================= Hero Section ================= */
.hero {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.85) 0%, rgba(0, 119, 182, 0.8) 100%),
                url('assets/images/slide-1.webp') center/cover no-repeat;
    color: #fff;
    padding: 90px 0 80px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid var(--sun-gold);
    color: #fef08a;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.25;
    max-width: 900px;
    margin: 0 auto 18px;
}

.hero p {
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 32px;
    color: #e2e8f0;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn-primary {
    background: var(--sun-gold);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background: var(--sun-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 26px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.hero-pills {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #f1f5f9;
}

.hero-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ================= Trust Highlights Bar ================= */
.trust-bar {
    background: #fff;
    padding: 24px 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 119, 182, 0.08);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.trust-text p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ================= Section Header ================= */
.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* ================= Discount Badges Promo Strip ================= */
.promo-strip {
    background: linear-gradient(135deg, #0a2540 0%, #0077b6 100%);
    color: #fff;
    padding: 30px;
    border-radius: var(--radius-lg);
    margin: 40px auto 60px;
    box-shadow: var(--shadow-md);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.promo-tier {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.promo-tier.golden {
    border-color: var(--sun-gold);
    background: rgba(245, 158, 11, 0.12);
}

.promo-badge-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--sun-gold);
    color: var(--primary);
    font-weight: 900;
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 20px;
}

.promo-tier h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.promo-tier p {
    font-size: 0.92rem;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.promo-perks {
    list-style: none;
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.promo-perks li i {
    color: var(--sun-gold);
    margin-right: 6px;
}

/* ================= Accommodations Grid ================= */
.accommodations-section {
    padding: 70px 0;
}

.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.unit-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.unit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 119, 182, 0.3);
}

.unit-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e2e8f0;
}

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

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

.badge-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(10, 37, 64, 0.85);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.btn-view-gallery {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-view-gallery:hover {
    background: var(--primary);
    color: #fff;
}

.unit-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.unit-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.unit-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.5;
}

.unit-features {
    list-style: none;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.88rem;
}

.unit-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
}

.unit-features li i {
    color: var(--accent);
    width: 16px;
    text-align: center;
}

.unit-pricing {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-top: auto;
    margin-bottom: 18px;
    border: 1px solid var(--border-color);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.price-row:last-child {
    margin-bottom: 0;
}

.price-label {
    color: var(--text-muted);
}

.price-value {
    font-weight: 700;
    color: var(--text-dark);
}

.price-row.highlight {
    padding-top: 6px;
    border-top: 1px dashed var(--border-color);
}

.price-row.highlight .price-label {
    color: var(--accent);
    font-weight: 700;
}

.price-row.highlight .price-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
}

.btn-book-unit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.98rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-book-unit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* ================= Interactive Calculator ================= */
.calculator-section {
    padding: 70px 0;
    background: #eff6ff;
}

.calc-container {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.calc-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.calc-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.calc-header p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.calc-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.calc-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.calc-select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-dark);
    background: #f8fafc;
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.calc-select:focus {
    border-color: var(--accent);
    background: #fff;
}

.calc-stepper {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    width: fit-content;
}

.calc-stepper-btn {
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.calc-stepper-btn:hover {
    background: var(--accent);
}

.calc-stepper-input {
    width: 75px;
    text-align: center;
    border: none;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    font-family: inherit;
    outline: none;
}

.quick-duration-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.duration-chip {
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
}

.duration-chip:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.duration-chip.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Discount Alert Strip */
.discount-banner {
    display: none;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    font-size: 0.92rem;
    font-weight: 700;
}

.discount-banner.tier-40 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.discount-banner.tier-50 {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.calc-invoice {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
}

.calc-invoice-title {
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.invoice-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--border-color);
}

.invoice-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    margin-top: 10px;
    border-top: 2px solid var(--primary);
}

.invoice-total-label {
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--primary);
}

.invoice-total-amount {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--primary);
}

.calc-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.calc-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

/* ================= FAQ Accordion ================= */
.faq-section {
    padding: 70px 0;
    background: #fff;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-light);
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--accent);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.faq-item summary {
    padding: 18px 22px;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--primary);
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 22px 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================= Footer ================= */
footer {
    background: var(--primary);
    color: #e2e8f0;
    padding: 60px 0 30px;
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 800;
}

.footer-brand p {
    max-width: 420px;
    color: #94a3b8;
    line-height: 1.6;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--sun-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    color: #64748b;
}

/* ================= WhatsApp Floating Button ================= */
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

/* ================= Lightbox Gallery ================= */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: none;
    flex-direction: column;
    justify-content: space-between;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-topbar {
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.lightbox-title {
    font-size: 1.1rem;
    font-weight: 700;
}

.lightbox-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.lightbox-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px;
}

.lightbox-main img {
    max-width: 90vw;
    max-height: 75vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.4);
}

.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

.lightbox-thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    overflow-x: auto;
}

.lightbox-thumb {
    width: 65px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    border: 2px solid transparent;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--sun-gold);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ================= Responsive ================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .top-bar-inner {
        justify-content: center;
    }
    .top-switchers {
        width: 100%;
        justify-content: center;
    }
    .units-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= MAMO Property Branding & Direct Booking ================= */
.mamo-official-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(10, 37, 64, 0.75);
    border: 1px solid rgba(245, 158, 11, 0.7);
    color: #fff;
    font-size: 0.9rem;
    padding: 7px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
    backdrop-filter: blur(6px);
}

.mamo-official-badge i {
    color: var(--sun-gold);
    font-size: 1.1rem;
}

.mamo-official-badge strong {
    color: var(--sun-gold);
}

.mamo-why-direct {
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 0;
}

.mamo-grid-direct {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.mamo-card-direct {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mamo-card-direct:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.mamo-card-direct-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.15);
    color: var(--sun-gold-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.mamo-card-direct h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.mamo-card-direct p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

