* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Tahoma, Arial, sans-serif;
    direction: rtl;
    background: #f7f7f7;
    color: #222;
}

a {
    text-decoration: none;
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
    width: 94%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
}

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

.nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.nav a {
    color: #fff;
    font-size: 14px;
    padding: 9px 11px;
    border-radius: 20px;
    transition: 0.25s;
}

.nav a:hover,
.nav .admin-link {
    background: #d4af37;
    color: #111;
}

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.78), rgba(0,0,0,0.38));
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 35px 20px;
    max-width: 950px;
}

.hero-logo {
    width: 145px;
    margin-bottom: 15px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.6));
}

.hero-content h1 {
    margin: 0 0 15px;
    font-size: 62px;
    color: #d4af37;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 25px;
    line-height: 1.9;
    margin: 0;
}

.hero-actions {
    margin-top: 32px;
}

.btn {
    display: inline-block;
    border: 0;
    cursor: pointer;
    background: #d4af37;
    color: #111;
    padding: 13px 27px;
    border-radius: 35px;
    font-weight: bold;
    transition: 0.25s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}

.btn.dark {
    background: #111;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    margin-right: 8px;
}

.search-panel {
    width: 88%;
    margin: -42px auto 35px;
    position: relative;
    z-index: 5;
    background: #fff;
    padding: 22px;
    border-radius: 22px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.16);
}

.search-panel input,
.search-panel select {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 13px;
    font-family: inherit;
}

.section {
    padding: 70px 7%;
}

.stats-section {
    padding-top: 30px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    background: #fff;
    text-align: center;
    padding: 28px 15px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    font-size: 17px;
}

.stat b {
    color: #b89020;
    font-size: 34px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin: 0 0 42px;
}

.section-title span,
.small-title {
    color: #d4af37;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box,
.card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    transition: 0.3s;
}

.feature-box:hover,
.card:hover {
    transform: translateY(-7px);
}

.feature-box img,
.card > img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.feature-box h3,
.feature-box p {
    padding: 0 22px;
}

.feature-box h3 {
    color: #b89020;
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-box p {
    line-height: 1.8;
    padding-bottom: 25px;
}

.luxury-projects {
    position: relative;
    padding: 95px 7%;
    background: url("../images/projects/istanbul-luxury-bg.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.luxury-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.70);
}

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

.small-title {
    display: block;
    font-weight: bold;
    margin-bottom: 12px;
}

.luxury-content h2 {
    font-size: 44px;
    color: #d4af37;
    margin: 0 0 16px;
}

.luxury-content > p {
    font-size: 21px;
    max-width: 900px;
    margin: 0 auto 45px;
    line-height: 1.9;
}

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

.luxury-card {
    background: rgba(255,255,255,0.97);
    color: #222;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    transition: 0.35s;
}

.luxury-card:hover {
    transform: translateY(-10px);
}

.luxury-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
}

.luxury-card-body {
    padding: 24px;
}

.luxury-card h3 {
    color: #b89020;
    font-size: 23px;
    margin: 0 0 10px;
}

.luxury-card p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

.luxury-btn {
    display: inline-block;
    margin-top: 42px;
    padding: 15px 40px;
    background: #d4af37;
    color: #000;
    border-radius: 40px;
    font-weight: bold;
}

.dark-section {
    background: linear-gradient(135deg, #111, #2a2a2a);
    color: #fff;
}

.light-title {
    color: #fff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.step {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 28px;
    border-radius: 20px;
}

.step b {
    color: #d4af37;
    font-size: 34px;
}

.step h3 {
    margin: 12px 0 8px;
}

.step p {
    line-height: 1.8;
    margin: 0;
}

.properties-grid {
    grid-template-columns: repeat(4, 1fr);
}

.card-body {
    padding: 22px;
}

.badge {
    display: inline-block;
    background: #111;
    color: #fff;
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 13px;
}

.card h3 {
    color: #222;
    font-size: 20px;
    margin: 15px 0 10px;
}

.meta {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.price {
    color: #b89020;
    font-size: 22px;
    font-weight: bold;
    margin: 15px 0;
}

.contact-cta {
    background: linear-gradient(135deg, #07111f, #16253f);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
    border-radius: 24px;
    margin: 30px auto 60px;
    max-width: 1080px;
    box-shadow: 0 18px 42px rgba(7,17,31,.16);
}

.contact-cta h2 {
    font-size: clamp(24px, 3vw, 34px);
    margin: 0 0 12px;
}

.contact-cta p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #e8edf6;
}

.contact-cta a {
    display: inline-block;
    background: linear-gradient(135deg, #d6aa38, #f0cf72);
    color: #07111f;
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.whatsapp {
    position: fixed;
    left: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}

.footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 35px 20px;
    line-height: 2;
}

@media (max-width: 1100px) {
    .search-panel {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid,
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .luxury-grid,
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
    }

    .nav {
        max-height: 145px;
        overflow-y: auto;
    }

    .hero {
        min-height: 78vh;
    }

    .hero-logo {
        width: 110px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .btn,
    .btn.dark {
        margin: 6px 0;
        width: 100%;
        max-width: 260px;
    }

    .search-panel {
        width: 92%;
        grid-template-columns: 1fr;
        margin-top: -25px;
    }

    .section {
        padding: 55px 5%;
    }

    .stats,
    .grid,
    .properties-grid,
    .luxury-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .section-title,
    .luxury-content h2 {
        font-size: 28px;
    }

    .luxury-projects {
        padding: 65px 5%;
    }

    .luxury-content > p,
    .contact-cta p {
        font-size: 17px;
    }

    .contact-cta {
        padding: 48px 16px;
        margin: 20px 12px 40px;
    }

    .luxury-card img,
    .feature-box img,
    .card > img {
        height: 230px;
    }
}


/* ===== SEO Area Pages ===== */
.area-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('../images/projects/istanbul-luxury-bg.jpg') center/cover no-repeat;
    padding: 80px 7% 55px;
    overflow: hidden;
}

.area-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.78), rgba(0,0,0,.45));
}

.area-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
}

.area-hero h1 {
    font-size: 44px;
    margin: 0 0 18px;
    color: #d4af37;
}

.area-hero p {
    font-size: 21px;
    line-height: 1.9;
    margin: 0 auto 25px;
}

.area-breadcrumb {
    font-size: 15px;
    margin-bottom: 18px;
    opacity: .9;
}

.area-breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.area-seo-box {
    background: #fff;
    margin: 45px auto 25px;
    padding: 35px;
    max-width: 1100px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
    line-height: 1.9;
}

.area-seo-box h2 {
    color: #b89020;
    margin-top: 0;
    font-size: 30px;
}

.area-seo-box ul {
    padding-right: 24px;
}

.area-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 20px auto 50px;
}

.area-link-card {
    display: block;
    background: #111;
    color: #fff;
    text-decoration: none;
    padding: 22px 15px;
    border-radius: 16px;
    text-align: center;
    font-weight: bold;
    transition: .3s;
}

.area-link-card:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-5px);
}

.empty-area {
    grid-column: 1/-1;
    background: #fff;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.empty-area h3 {
    color: #b89020;
}

@media (max-width: 768px) {
    .area-hero {
        min-height: 300px;
        padding: 60px 5% 40px;
    }

    .area-hero h1 {
        font-size: 30px;
    }

    .area-hero p {
        font-size: 17px;
    }

    .area-seo-box {
        padding: 24px;
        margin: 30px 5%;
    }

    .area-links-grid {
        grid-template-columns: 1fr;
        margin: 20px 5% 40px;
    }
}

/* ===== FIX HEADER NAVIGATION COLORS ===== */
.header .nav a,
.header .nav a:link,
.header .nav a:visited,
.header .nav a:active,
.header .nav a:focus {
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.header .nav a:hover {
    background: #d4af37 !important;
    color: #111111 !important;
}

.header .nav .admin-link,
.header .nav .admin-link:link,
.header .nav .admin-link:visited {
    background: #d4af37 !important;
    color: #111111 !important;
}

.header .nav a[href="news.php"] {
    color: #ffffff !important;
    font-weight: bold;
}

.header .nav a[href="news.php"]:hover {
    background: #d4af37 !important;
    color: #111111 !important;
}

.nav a,
.nav a:visited,
.nav a:link {
    color: #ffffff !important;
}

.nav a:hover {
    background: #d4af37 !important;
    color: #111111 !important;
}

.nav a.news-link {
    color: #ffffff !important;
    font-weight: bold !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.nav a.news-link:hover {
    color: #111111 !important;
    background: #d4af37 !important;
}

/* =====================================================
   JUANA BLOG SYSTEM DESIGN
   تنسيقات نظام البلوج والمقالات
===================================================== */

.blog-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: url('../images/projects/istanbul-luxury-bg.jpg') center/cover no-repeat;
    padding: 85px 7% 60px;
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,.82), rgba(0,0,0,.48));
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
}

.blog-hero h1 {
    font-size: 46px;
    color: #d4af37;
    margin: 0 0 18px;
}

.blog-hero p {
    font-size: 21px;
    line-height: 1.9;
    margin: 0;
}

.blog-wrapper {
    padding: 70px 7%;
    background: #f7f7f7;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 35px;
    max-width: 1250px;
    margin: auto;
}

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

.blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.09);
    transition: .3s;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.14);
}

.blog-card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 12px;
}

.blog-card h2,
.blog-card h3 {
    font-size: 22px;
    color: #222;
    line-height: 1.5;
    margin: 8px 0 12px;
}

.blog-card p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
    margin: 0 0 18px;
}

.blog-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 14px;
}

.blog-read-more {
    display: inline-block;
    background: #d4af37;
    color: #111;
    padding: 11px 24px;
    border-radius: 30px;
    font-weight: bold;
}

.blog-read-more:hover {
    background: #111;
    color: #fff;
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.sidebar-box {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.sidebar-box h3 {
    color: #b89020;
    margin: 0 0 18px;
    font-size: 22px;
}

.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box li {
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.sidebar-box li:last-child {
    border-bottom: 0;
}

.sidebar-box a {
    color: #222;
    line-height: 1.7;
    font-weight: bold;
}

.sidebar-box a:hover {
    color: #b89020;
}

.blog-search-form {
    display: flex;
    gap: 8px;
}

.blog-search-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
}

.blog-search-form button {
    border: 0;
    background: #d4af37;
    color: #111;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
}

/* Single blog post */
.blog-post-container {
    max-width: 1050px;
    margin: 60px auto;
    padding: 0 7%;
}

.blog-post-box {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 38px rgba(0,0,0,0.10);
}

.blog-post-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    padding: 45px;
}

.blog-post-content h1 {
    color: #b89020;
    font-size: 38px;
    line-height: 1.5;
    margin: 0 0 16px;
}

.blog-post-content h2 {
    color: #222;
    font-size: 28px;
    margin-top: 35px;
}

.blog-post-content h3 {
    color: #b89020;
    font-size: 23px;
    margin-top: 28px;
}

.blog-post-content p,
.blog-post-content li {
    font-size: 18px;
    line-height: 2.05;
    color: #333;
}

.blog-post-content ul,
.blog-post-content ol {
    padding-right: 26px;
}

.blog-post-content blockquote {
    border-right: 5px solid #d4af37;
    background: #faf7ee;
    margin: 28px 0;
    padding: 20px 25px;
    border-radius: 14px;
    color: #333;
    line-height: 1.9;
}

.blog-cta-box {
    background: linear-gradient(135deg, #111, #2a2a2a);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    margin-top: 35px;
    text-align: center;
}

.blog-cta-box h3 {
    color: #d4af37;
    margin-top: 0;
}

.blog-cta-box p {
    color: #fff;
}

.blog-cta-box a {
    display: inline-block;
    background: #25d366;
    color: #fff;
    padding: 13px 30px;
    border-radius: 35px;
    font-weight: bold;
    margin-top: 10px;
}

.related-posts {
    margin-top: 55px;
}

.related-posts h2 {
    text-align: center;
    color: #222;
    font-size: 32px;
    margin-bottom: 30px;
}

/* Admin blog form */
.admin-form-wrap {
    max-width: 950px;
    margin: 60px auto;
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.admin-form-wrap h1 {
    color: #b89020;
    margin-top: 0;
}

.admin-form-wrap label {
    display: block;
    margin: 16px 0 7px;
    font-weight: bold;
}

.admin-form-wrap input,
.admin-form-wrap select,
.admin-form-wrap textarea {
    width: 100%;
    padding: 13px;
    border: 1px solid #ddd;
    border-radius: 13px;
    font-family: inherit;
    font-size: 15px;
}

.admin-form-wrap textarea {
    min-height: 260px;
    line-height: 1.8;
}

.admin-form-wrap button {
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-hero {
        min-height: 300px;
        padding: 60px 5% 45px;
    }

    .blog-hero h1 {
        font-size: 31px;
    }

    .blog-hero p {
        font-size: 17px;
    }

    .blog-wrapper {
        padding: 50px 5%;
    }

    .blog-grid,
    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 225px;
    }

    .blog-post-container {
        margin: 35px auto;
        padding: 0 5%;
    }

    .blog-post-content {
        padding: 26px;
    }

    .blog-post-content h1 {
        font-size: 28px;
    }

    .blog-post-content h2 {
        font-size: 23px;
    }

    .blog-post-content p,
    .blog-post-content li {
        font-size: 16px;
        line-height: 1.95;
    }

    .admin-form-wrap {
        margin: 35px 5%;
        padding: 24px;
    }
}

/* JUANA Istanbul area cards for blog - SEO images */
.juana-area-blog-section{padding-top:48px;padding-bottom:30px;background:#fbfaf7;}
.juana-area-section-subtitle{max-width:820px;margin:0 auto 26px;text-align:center;color:#5f6570;font-size:1.05rem;line-height:1.8;}
.juana-area-card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:22px;max-width:1180px;margin:0 auto;}
.juana-area-card{background:#fff;border:1px solid rgba(194,151,58,.22);border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(15,23,42,.08);transition:transform .25s ease,box-shadow .25s ease;}
.juana-area-card:hover{transform:translateY(-5px);box-shadow:0 18px 40px rgba(15,23,42,.13);}
.juana-area-card img{width:100%;height:190px;object-fit:cover;display:block;}
.juana-area-card-body{padding:18px;}
.juana-area-card-body h3{margin:0 0 10px;color:#101828;font-size:1.2rem;font-weight:800;}
.juana-area-card-body p{min-height:72px;margin:0 0 14px;color:#566070;line-height:1.75;font-size:.95rem;}
.juana-area-card .btn{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:8px 16px;border-radius:999px;background:#c79a2b;color:#111;text-decoration:none;font-weight:700;}
@media(max-width:640px){.juana-area-card img{height:170px}.juana-area-card-body p{min-height:auto}.juana-area-blog-section{padding-top:34px}}


/* ===== JUANA FULL PROFESSIONAL FIX 2026-06-23 ===== */
:root{--juana-navy:#07111f;--juana-gold:#d8aa3d;--juana-text:#19202b;--juana-muted:#657083;--juana-bg:#f6f7f9;}
body{overflow-x:hidden;background:#f7f7f7;color:var(--juana-text);} 
.juana-main-header,.header{min-height:76px!important;background:#07111f!important;position:sticky!important;top:0!important;z-index:9999!important;box-shadow:0 10px 26px rgba(0,0,0,.14)!important;}
.juana-header-inner,.header-inner{max-width:1440px!important;margin:0 auto!important;min-height:76px!important;padding:8px 18px!important;display:flex!important;align-items:center!important;justify-content:space-between!important;gap:14px!important;}
.logo-link{display:flex!important;align-items:center!important;flex:0 0 auto!important}.logo-img{width:auto!important;height:56px!important;max-width:86px!important;object-fit:contain!important;display:block!important;}
.juana-nav,.nav{display:flex!important;align-items:center!important;justify-content:center!important;gap:12px!important;flex-wrap:wrap!important;width:100%!important;line-height:1.2!important;}
.juana-nav a,.nav a{color:#fff!important;text-decoration:none!important;font-weight:700!important;font-size:14px!important;padding:8px 4px!important;white-space:nowrap!important;}
.juana-nav a:hover,.nav a:hover{color:var(--juana-gold)!important}.admin-link{background:var(--juana-gold)!important;color:#07111f!important;border-radius:8px!important;padding:9px 14px!important;font-weight:800!important;}
.juana-social-links{display:inline-flex!important;align-items:center!important;gap:8px!important;margin:0 4px!important;flex:0 0 auto!important;position:static!important;}
.social-link{width:30px!important;height:30px!important;min-width:30px!important;border-radius:50%!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;border:0!important;box-shadow:none!important;padding:0!important;background:#fff!important;}
.social-link svg{width:17px!important;height:17px!important;display:block!important}.social-link.facebook{background:#1877F2!important}.social-link.instagram{background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fdf497 5%,#fd5949 45%,#d6249f 60%,#285AEB 90%)!important}.social-link.tiktok{background:#000!important}.social-link svg path{fill:#fff!important;}
.language-switcher{display:inline-flex!important;margin:0!important}.language-switcher select{height:34px!important;border-radius:8px!important;border:0!important;padding:0 10px!important;background:#fff!important;color:#111!important;font-weight:700!important;}
@media(max-width:980px){.juana-header-inner,.header-inner{flex-direction:column!important;align-items:center!important}.logo-img{height:50px!important}.juana-nav,.nav{gap:8px!important}.juana-nav a,.nav a{font-size:13px!important;padding:6px 3px!important}}
.juana-page-hero{min-height:310px;padding:82px 5% 62px;background:linear-gradient(135deg,#07111f,#333 70%,#d8aa3d);display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;}
.juana-page-hero h1{font-size:clamp(32px,4vw,54px);margin:12px 0;color:#d8aa3d;font-weight:900}.juana-page-hero p{max-width:850px;margin:0 auto;font-size:18px;line-height:1.9}.juana-page-hero span{opacity:.92;font-weight:700}
.juana-hero-badge{display:inline-flex;align-items:center;gap:8px;padding:8px 14px;border-radius:999px;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.2);font-size:13px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;margin-bottom:10px}
.juana-contact-badges{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:22px}
.juana-contact-badges span{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);padding:8px 12px;border-radius:999px;font-size:14px;font-weight:700}
.juana-section{max-width:1260px;margin:0 auto;padding:60px 20px}.section-title{text-align:center;margin:0 0 30px;font-size:32px;color:#07111f;font-weight:900}.juana-contact-professional{display:grid;grid-template-columns:1.15fr .85fr;gap:24px;align-items:start}.juana-contact-form-card,.juana-contact-side-card,.juana-press-card{background:#fff;border:1px solid rgba(216,170,61,.18);border-radius:24px;padding:28px;box-shadow:0 16px 36px rgba(7,17,31,.08)}.juana-contact-form-card h2,.juana-contact-side-card h2,.juana-press-card h2{margin-top:0;color:#07111f;font-size:24px}.juana-contact-form{display:flex;flex-direction:column;gap:14px}.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}.juana-contact-form input,.juana-contact-form select,.juana-contact-form textarea{width:100%;padding:13px 14px;border:1px solid #dde3ea;border-radius:12px;font:inherit;background:#fbfcfe}.juana-contact-form textarea{min-height:120px}.juana-contact-form button,.juana-press-cta a,.contact-cta a{display:inline-flex;align-items:center;justify-content:center;padding:12px 18px;border-radius:999px;background:#d8aa3d;color:#07111f;text-decoration:none;font-weight:800;border:0;cursor:pointer}.juana-contact-side-card .contact-info-line{display:flex;align-items:center;gap:8px;padding:10px 0;border-bottom:1px solid #eef2f6;color:#344054;font-weight:700}.juana-contact-side-card .contact-info-line:last-child{border-bottom:0}.juana-contact-benefits{margin-top:18px;padding:16px;border-radius:16px;background:#f8f6ef;border:1px solid rgba(216,170,61,.2)}.juana-contact-benefits ul{margin:8px 0 0;padding-inline-start:20px;line-height:1.8;color:#495365}.contact-socials{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.contact-socials a{padding:8px 12px;border-radius:999px;background:#07111f;color:#fff;text-decoration:none;font-size:14px;font-weight:700}.juana-map-box{background:#fff;border-radius:24px;padding:10px;box-shadow:0 16px 36px rgba(7,17,31,.08);border:1px solid rgba(216,170,61,.16)}.juana-map-box iframe{width:100%;min-height:390px;border:0;border-radius:16px}.contact-cta{max-width:1100px;margin:24px auto 0;padding:28px;text-align:center;background:linear-gradient(135deg,#07111f,#183a5f);color:#fff;border-radius:24px;box-shadow:0 16px 36px rgba(7,17,31,.14)}.contact-cta h2{margin-top:0;font-size:24px}.juana-press-shell{max-width:1100px;margin:0 auto;padding:24px 20px 60px}.juana-press-grid{display:grid;gap:18px}.juana-press-card ul{margin:0;padding-inline-start:20px;line-height:1.8;color:#4c5b6b}.juana-press-card a{color:#0d2948;font-weight:700}.juana-press-cta{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}.juana-press-card p{line-height:1.9;color:#4c5b6b}.juana-press-intro{background:linear-gradient(135deg,#fbf7eb,#fff);border-color:rgba(216,170,61,.24)}@media(max-width:900px){.juana-contact-professional{grid-template-columns:1fr}.form-row{grid-template-columns:1fr}}@media(max-width:680px){.juana-contact-badges{justify-content:flex-start}.juana-contact-form-card,.juana-contact-side-card,.juana-press-card{padding:22px}.juana-map-box iframe{min-height:280px}.juana-press-cta{flex-direction:column;align-items:flex-start}}.juana-area-grid-fixed{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:26px!important;align-items:stretch!important}.juana-area-card-fixed{background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 16px 35px rgba(7,17,31,.10);border:1px solid rgba(216,170,61,.22);display:flex;flex-direction:column;min-height:520px}.juana-area-card-fixed img{width:100%!important;height:230px!important;object-fit:cover!important;display:block!important;flex:0 0 230px!important}.juana-area-card-body{padding:22px;display:flex;flex-direction:column;flex:1;text-align:start}.juana-area-card-body h2{font-size:23px;margin:0 0 12px;color:#07111f;font-weight:900}.juana-area-card-body p{color:#566070;line-height:1.85;font-size:15px;margin:0 0 18px;min-height:135px}.juana-btn-dark,.juana-btn-gold{display:inline-flex;align-items:center;justify-content:center;text-decoration:none;border-radius:999px;font-weight:800;padding:11px 19px;margin-top:auto}.juana-btn-dark{background:#07111f;color:#fff!important}.juana-btn-gold{background:#d8aa3d;color:#07111f!important}.juana-area-detail-hero{min-height:480px;background-size:cover;background-position:center;display:flex;align-items:center;padding:90px 7%;color:#fff}.juana-area-detail-hero>div{max-width:780px}.juana-area-detail-hero h1{font-size:clamp(34px,4.4vw,62px);margin:12px 0;color:#fff;font-weight:900}.juana-area-detail-hero p{font-size:18px;line-height:1.9;margin-bottom:24px}.juana-area-text-panel{background:#fff;border-radius:22px;padding:32px;box-shadow:0 14px 34px rgba(7,17,31,.08)}.juana-area-text-panel p{font-size:17px;line-height:2;color:#4e596b}.juana-facts{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}.juana-facts span{background:#f3eee4;border:1px solid rgba(216,170,61,.28);border-radius:999px;padding:10px 15px;font-weight:800}.juana-main-gallery{background:#fff;border-radius:22px;padding:16px;box-shadow:0 14px 34px rgba(7,17,31,.08)}.juana-main-gallery-img{width:100%!important;height:520px!important;object-fit:cover!important;border-radius:16px!important;display:block}.juana-thumb-scroll{display:flex;gap:12px;overflow-x:auto;padding:14px 2px 2px;scroll-snap-type:x mandatory}.juana-thumb-scroll button{border:0;background:transparent;padding:0;cursor:pointer;flex:0 0 190px;scroll-snap-align:start}.juana-thumb-scroll img{width:190px!important;height:118px!important;object-fit:cover!important;border-radius:12px!important;display:block;border:3px solid transparent}.juana-thumb-scroll button:hover img{border-color:#d8aa3d}.juana-property-grid-3,.properties-grid,.grid.properties-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:26px!important;align-items:stretch!important}.property-card,.juana-card-pro{height:100%!important;min-height:520px!important;display:flex!important;flex-direction:column!important;border-radius:20px!important;overflow:hidden!important;background:#fff!important;box-shadow:0 15px 34px rgba(7,17,31,.10)!important}.property-slider{height:235px!important;position:relative!important;overflow:hidden!important;background:#eee!important}.property-slider img,.property-slide{width:100%!important;height:235px!important;object-fit:cover!important;display:none!important}.property-slide.active,.property-slider img.active{display:block!important}.property-card .card-body{padding:18px!important;display:flex!important;flex-direction:column!important;flex:1!important}.property-card h3{font-size:19px!important;line-height:1.45!important;min-height:54px!important}.property-card .price{font-size:20px!important;color:#b88716!important;font-weight:900!important;margin-top:auto!important}.card-actions{display:flex!important;gap:10px!important;flex-wrap:wrap!important;margin-top:12px!important}.card-actions .btn{flex:1!important;text-align:center!important}.juana-empty{grid-column:1/-1;text-align:center;background:#fff;border-radius:16px;padding:28px}.juana-testimonial-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}.juana-testimonial-card{background:#fff;border-radius:22px;padding:26px;box-shadow:0 14px 32px rgba(7,17,31,.09);border:1px solid rgba(216,170,61,.18);min-height:270px;display:flex;flex-direction:column}.stars{color:#d8aa3d;font-size:22px;letter-spacing:2px}.juana-testimonial-card p{line-height:1.9;color:#4d5665;flex:1}.client{display:flex;align-items:center;gap:12px}.avatar{width:48px;height:48px;border-radius:50%;background:#07111f;color:#d8aa3d;display:flex;align-items:center;justify-content:center;font-weight:900}.client span{display:block;color:#6c7280;font-size:13px;margin-top:4px}.juana-contact-wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:26px;align-items:start}.juana-contact-card,.juana-contact-info{background:#fff;border-radius:22px;padding:30px;box-shadow:0 14px 32px rgba(7,17,31,.09)}.juana-contact-form{display:grid;gap:14px}.juana-contact-form input,.juana-contact-form select,.juana-contact-form textarea{width:100%;border:1px solid #dde2ea;border-radius:12px;padding:14px;font-family:inherit;font-size:15px}.juana-contact-form textarea{min-height:130px}.juana-contact-form button{background:#d8aa3d;color:#07111f;border:0;border-radius:999px;padding:14px 22px;font-weight:900;cursor:pointer}.info-line{display:block;text-decoration:none;color:#07111f;font-weight:800;margin:12px 0}.contact-socials{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.contact-socials a{background:#07111f;color:#fff;text-decoration:none;border-radius:999px;padding:10px 15px;font-weight:800}.contact-cta{margin:30px auto 60px;max-width:980px;text-align:center;background:#07111f;color:#fff;border-radius:28px;padding:40px 25px}.contact-cta h2{color:#d8aa3d}.contact-cta a{display:inline-flex;background:#d8aa3d;color:#07111f!important;text-decoration:none;border-radius:999px;padding:12px 24px;font-weight:900;margin-top:10px}
@media(max-width:1024px){.juana-area-grid-fixed,.juana-property-grid-3,.properties-grid,.grid.properties-grid,.juana-testimonial-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.juana-contact-wrap{grid-template-columns:1fr}.juana-main-gallery-img{height:420px!important}}
@media(max-width:650px){.juana-area-grid-fixed,.juana-property-grid-3,.properties-grid,.grid.properties-grid,.juana-testimonial-grid{grid-template-columns:1fr!important}.juana-area-card-fixed{min-height:auto}.juana-area-card-body p{min-height:auto}.juana-main-gallery-img{height:285px!important}.juana-thumb-scroll button{flex-basis:135px}.juana-thumb-scroll img{width:135px!important;height:88px!important}.property-slider,.property-slider img,.property-slide{height:210px!important}}


/* JUANA Istanbul Area Guide Professional Fix */
.juana-area-guides-hero{min-height:320px;background:linear-gradient(135deg,#111827,#4b5563)!important;display:flex;align-items:center;justify-content:center;text-align:center;color:#fff;padding:90px 20px 70px!important}.juana-area-guides-hero h1{color:#d4af37!important;font-size:clamp(32px,4vw,56px);margin:14px 0}.juana-area-guides-hero p{max-width:850px;margin:0 auto;color:#fff;font-size:18px;line-height:1.8}.juana-area-guide-list-section{max-width:1240px;margin:0 auto;padding:70px 20px!important}.juana-area-grid-professional{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:28px!important;align-items:stretch!important;overflow:visible!important}.juana-area-card-professional{background:#fff!important;border-radius:22px!important;box-shadow:0 18px 42px rgba(15,23,42,.12)!important;overflow:hidden!important;display:flex!important;flex-direction:column!important;height:100%!important;min-height:520px!important;border:1px solid rgba(15,23,42,.08)!important;transition:.25s ease}.juana-area-card-professional:hover{transform:translateY(-5px);box-shadow:0 24px 54px rgba(15,23,42,.18)!important}.juana-area-card-image{display:block;width:100%;height:240px;overflow:hidden;background:#e5e7eb}.juana-area-card-image img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}.juana-area-card-content{padding:24px;display:flex;flex-direction:column;flex:1}.juana-area-card-content h2{font-size:24px;margin:0 0 14px;color:#07111f;font-weight:800}.juana-area-card-content p{font-size:15.5px;line-height:1.85;color:#4b5563;flex:1;margin:0 0 20px}.juana-btn-dark{display:inline-flex!important;align-items:center;justify-content:center;align-self:flex-start;background:#07111f!important;color:#fff!important;text-decoration:none!important;border-radius:999px!important;padding:11px 22px!important;font-weight:800!important;box-shadow:0 10px 24px rgba(7,17,31,.18)}.juana-btn-dark:hover{background:#d4af37!important;color:#07111f!important}.juana-area-inner-hero{min-height:560px;background-size:cover;background-position:center;display:flex;align-items:center;padding:120px 7%;color:#fff;position:relative}.juana-area-inner-hero-content{max-width:850px}.juana-area-inner-hero span{display:inline-block;background:rgba(212,175,55,.95);color:#07111f;border-radius:999px;padding:8px 18px;font-weight:800;margin-bottom:18px}.juana-area-inner-hero h1{font-size:clamp(34px,5vw,62px);color:#fff;margin:0 0 20px;line-height:1.2}.juana-area-inner-hero p{font-size:18px;line-height:1.9;color:#f8fafc;margin-bottom:26px}.juana-btn-gold{display:inline-flex!important;align-items:center;justify-content:center;background:#d4af37!important;color:#07111f!important;border-radius:999px!important;padding:13px 28px!important;font-weight:900!important;text-decoration:none!important}.juana-area-overview-section,.juana-area-gallery-section,.juana-area-properties-section{max-width:1240px;margin:0 auto;padding:70px 20px!important}.juana-area-overview-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;align-items:stretch}.juana-area-text-panel-pro,.juana-area-features-card{background:#fff;border-radius:22px;box-shadow:0 18px 42px rgba(15,23,42,.10);padding:34px;border:1px solid rgba(15,23,42,.08)}.juana-area-text-panel-pro h2,.juana-area-features-card h2{color:#07111f;font-size:28px;margin:0 0 16px}.juana-area-text-panel-pro p{color:#4b5563;font-size:17px;line-height:2;margin:0}.juana-area-features-grid{display:grid;grid-template-columns:1fr;gap:12px}.juana-area-feature-item{background:#f8fafc;border:1px solid #e5e7eb;border-radius:14px;padding:13px 16px;color:#07111f;font-weight:700;line-height:1.6}.juana-area-gallery-pro{background:#fff;border-radius:24px;box-shadow:0 18px 42px rgba(15,23,42,.10);padding:18px;border:1px solid rgba(15,23,42,.08);max-width:1120px;margin:0 auto}.juana-area-gallery-main-wrap{height:520px;border-radius:18px;overflow:hidden;position:relative;background:#e5e7eb}.juana-area-gallery-main{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}.juana-gallery-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:2;width:46px;height:46px;border-radius:50%;border:none;background:rgba(7,17,31,.82);color:#fff;font-size:34px;line-height:1;cursor:pointer}.juana-gallery-arrow.prev{left:16px}.juana-gallery-arrow.next{right:16px}.juana-area-thumb-scroll{display:flex;gap:12px;overflow-x:auto;padding:16px 2px 4px;scrollbar-width:thin}.juana-area-thumb-scroll button{flex:0 0 160px;height:96px;border:3px solid transparent;border-radius:14px;overflow:hidden;padding:0;background:#fff;cursor:pointer}.juana-area-thumb-scroll button.active{border-color:#d4af37}.juana-area-thumb-scroll img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}.juana-property-grid-3,.juana-property-grid-unified{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:28px!important;align-items:stretch!important}.juana-property-grid-3 .property-card,.juana-property-grid-3 .property-item,.juana-property-grid-3 article,.juana-property-grid-unified .property-card,.juana-property-grid-unified .property-item{height:100%!important;min-height:480px!important;border-radius:20px!important;overflow:hidden!important;box-shadow:0 16px 36px rgba(15,23,42,.12)!important;background:#fff!important}.juana-property-grid-3 img{width:100%!important;height:240px!important;object-fit:cover!important}.juana-empty{grid-column:1/-1;text-align:center;background:#fff;border-radius:18px;padding:28px;box-shadow:0 10px 30px rgba(15,23,42,.08)}.section-title{text-align:center;font-size:34px;color:#07111f;margin:0 0 32px}.site-logo img,.logo img,header img[src*="logo"]{max-height:74px!important;width:auto!important;object-fit:contain!important}@media(max-width:1024px){.juana-area-grid-professional,.juana-property-grid-3,.juana-property-grid-unified{grid-template-columns:repeat(2,minmax(0,1fr))!important}.juana-area-overview-grid{grid-template-columns:1fr}.juana-area-gallery-main-wrap{height:430px}}@media(max-width:680px){.juana-area-grid-professional,.juana-property-grid-3,.juana-property-grid-unified{grid-template-columns:1fr!important}.juana-area-inner-hero{min-height:460px;padding:90px 22px}.juana-area-gallery-main-wrap{height:320px}.juana-area-card-professional{min-height:auto}.juana-area-card-image{height:220px}.juana-area-thumb-scroll button{flex-basis:130px;height:80px}}


/* =====================================================
   JUANA BLOG CARDS 3-COLUMN UNIFIED PATCH
   يجعل مقالات المدونة 3 كروت في السطر وبنفس الحجم
===================================================== */
.section .blog-grid,
.blog-wrapper .blog-grid,
.blog-grid{
    display:grid!important;
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:28px!important;
    align-items:stretch!important;
    width:100%!important;
}
.blog-card{
    height:100%!important;
    min-height:560px!important;
    display:flex!important;
    flex-direction:column!important;
    background:#fff!important;
    border-radius:22px!important;
    overflow:hidden!important;
    box-shadow:0 14px 34px rgba(7,17,31,.10)!important;
}
.blog-card:hover{transform:translateY(-6px)!important;box-shadow:0 20px 46px rgba(7,17,31,.15)!important;}
.blog-card > img,.blog-card img{width:100%!important;height:245px!important;min-height:245px!important;max-height:245px!important;object-fit:cover!important;display:block!important;background:#f1f1f1!important;}
.blog-card-body{padding:24px!important;display:flex!important;flex-direction:column!important;flex:1!important;min-height:315px!important;}
.blog-card-body .blog-cat,.blog-card-body .blog-category{align-self:flex-start!important;background:#07111f!important;color:#fff!important;border-radius:999px!important;padding:6px 14px!important;font-size:13px!important;font-weight:700!important;margin-bottom:12px!important;}
.blog-card h2,.blog-card h3{font-size:22px!important;line-height:1.5!important;margin:8px 0 12px!important;color:#07111f!important;min-height:66px!important;}
.blog-card p{color:#657083!important;line-height:1.9!important;font-size:15px!important;margin:0 0 18px!important;min-height:88px!important;}
.blog-card .btn,.blog-card .blog-read-more{margin-top:auto!important;align-self:flex-start!important;background:#d4af37!important;color:#07111f!important;border-radius:999px!important;padding:11px 24px!important;font-weight:800!important;text-decoration:none!important;}
.blog-card .btn:hover,.blog-card .blog-read-more:hover{background:#07111f!important;color:#fff!important;}
.blog-search{display:flex!important;gap:10px!important;align-items:center!important;justify-content:flex-end!important;margin:0 0 28px!important;flex-wrap:wrap!important;}
.blog-search input,.blog-search select{height:42px!important;border:1px solid #d9dde5!important;border-radius:10px!important;padding:0 12px!important;font-family:inherit!important;}
@media(max-width:1100px){.section .blog-grid,.blog-wrapper .blog-grid,.blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}}
@media(max-width:680px){.section .blog-grid,.blog-wrapper .blog-grid,.blog-grid{grid-template-columns:1fr!important;}.blog-card{min-height:auto!important;}.blog-card > img,.blog-card img{height:225px!important;min-height:225px!important;max-height:225px!important;}.blog-card h2,.blog-card h3,.blog-card p{min-height:auto!important;}.blog-card-body{min-height:auto!important;}}

/* ===== JUANA Professional Property Details Redesign ===== */
.juana-property-detail-page{background:#f6f7f9;padding-bottom:70px;overflow-x:hidden}.juana-property-top{max-width:1240px;margin:0 auto;padding:48px 20px 20px}.juana-property-gallery-wrap{background:#fff;border-radius:24px;padding:18px;box-shadow:0 18px 45px rgba(7,17,31,.10);border:1px solid rgba(216,170,61,.18)}.juana-property-main-image-box{position:relative;border-radius:18px;overflow:hidden;background:#eef1f5}.juana-gallery-open{display:block;width:100%;border:0;background:transparent;padding:0;cursor:zoom-in}.juana-property-main-image{width:100%!important;height:610px!important;object-fit:cover!important;display:block!important}.juana-image-count{position:absolute;left:18px;bottom:18px;background:rgba(7,17,31,.86);color:#fff;border-radius:999px;padding:9px 16px;font-weight:800;font-size:14px}.juana-property-thumbs-title{font-weight:900;color:#07111f;margin:18px 4px 10px;font-size:17px}.juana-property-thumb-scroll{display:flex;gap:12px;overflow-x:auto;padding:4px 2px 8px;scroll-snap-type:x mandatory;scrollbar-width:thin}.juana-property-thumb{flex:0 0 172px;height:112px;border:3px solid transparent;border-radius:14px;overflow:hidden;background:#fff;padding:0;cursor:pointer;scroll-snap-align:start;transition:.2s}.juana-property-thumb.active,.juana-property-thumb:hover{border-color:#d8aa3d;transform:translateY(-2px)}.juana-property-thumb img{width:100%!important;height:100%!important;object-fit:cover!important;display:block!important}.juana-property-video{width:100%;margin-top:18px;border-radius:16px;display:block}.juana-property-content-wrap{max-width:1240px;margin:0 auto;padding:18px 20px}.juana-property-content-grid{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:26px;align-items:start}.juana-property-main-content{display:flex;flex-direction:column;gap:22px}.juana-property-heading-card,.juana-property-section-card,.juana-property-side-card{background:#fff;border-radius:22px;padding:28px;box-shadow:0 14px 36px rgba(7,17,31,.08);border:1px solid rgba(15,23,42,.06)}.juana-property-heading-card h1{margin:14px 0 10px;color:#07111f;font-size:clamp(28px,3.4vw,46px);line-height:1.35;font-weight:900}.juana-property-badge{display:inline-flex;background:#07111f;color:#fff;border-radius:999px;padding:7px 15px;font-weight:800;font-size:13px}.juana-property-badge.small{font-size:12px;padding:5px 12px}.juana-property-location{color:#657083;font-size:16px;margin-bottom:12px}.juana-property-price{font-size:34px;color:#b88716;font-weight:900}.juana-property-section-card h2{margin:0 0 20px;color:#07111f;font-size:26px;font-weight:900}.juana-property-spec-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.juana-property-spec-grid div{background:#f8fafc;border:1px solid #e5e7eb;border-radius:16px;padding:16px;min-height:92px}.juana-property-spec-grid strong{display:block;color:#7b8494;font-size:13px;margin-bottom:8px}.juana-property-spec-grid span{display:block;color:#07111f;font-weight:900;font-size:17px}.juana-property-description{color:#344054;font-size:17px;line-height:2.05}.juana-property-feature-pills{display:flex;gap:10px;flex-wrap:wrap}.juana-property-feature-pills span{background:#f3eee4;border:1px solid rgba(216,170,61,.30);border-radius:999px;color:#07111f;padding:10px 15px;font-weight:800}.juana-property-map{height:390px;border-radius:18px;overflow:hidden;background:#e5e7eb}.juana-property-map iframe{width:100%;height:100%;border:0;display:block}.juana-property-side-card{position:sticky;top:96px}.juana-property-side-card h3{margin:0 0 10px;color:#07111f;font-size:24px}.juana-property-side-card p{color:#667085;line-height:1.8}.juana-side-whatsapp,.juana-side-call{display:flex;align-items:center;justify-content:center;text-decoration:none;border-radius:999px;padding:13px 20px;font-weight:900;margin:12px 0}.juana-side-whatsapp{background:#25d366;color:#fff!important}.juana-side-call{background:#07111f;color:#fff!important}.juana-side-trust{display:grid;gap:10px;margin-top:18px;color:#07111f;font-weight:800}.juana-side-trust span{background:#f8fafc;border-radius:12px;padding:10px 12px}.juana-related-properties-section{max-width:1240px;margin:0 auto;padding:35px 20px}.juana-related-properties-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:26px;align-items:stretch}.juana-related-property-card{background:#fff;border-radius:20px;overflow:hidden;box-shadow:0 14px 36px rgba(7,17,31,.10);display:flex;flex-direction:column;min-height:520px}.juana-related-property-card img{width:100%!important;height:235px!important;object-fit:cover!important;display:block!important}.juana-related-property-body{padding:20px;display:flex;flex-direction:column;flex:1}.juana-related-property-body h3{font-size:20px;line-height:1.45;margin:12px 0;color:#07111f;min-height:58px}.juana-related-property-body p{color:#667085;line-height:1.7;margin:0 0 12px}.juana-related-property-body strong{display:block;color:#b88716;font-size:20px;margin:auto 0 14px}.juana-empty-related{grid-column:1/-1;background:#fff;border-radius:18px;padding:30px;text-align:center;box-shadow:0 10px 28px rgba(7,17,31,.08)}.juana-property-lightbox{position:fixed;inset:0;background:rgba(0,0,0,.92);z-index:99999;display:none;align-items:center;justify-content:center;padding:28px}.juana-property-lightbox.active{display:flex}.juana-property-lightbox img{max-width:94vw;max-height:88vh;object-fit:contain;border-radius:12px;box-shadow:0 20px 60px rgba(0,0,0,.5)}.juana-property-lightbox button{position:absolute;top:18px;right:24px;width:46px;height:46px;border:0;border-radius:50%;background:#d8aa3d;color:#07111f;font-size:34px;line-height:1;cursor:pointer;font-weight:900}@media(max-width:1050px){.juana-property-main-image{height:470px!important}.juana-property-content-grid{grid-template-columns:1fr}.juana-property-side-card{position:static}.juana-property-spec-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.juana-related-properties-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:680px){.juana-property-top{padding:24px 12px 10px}.juana-property-gallery-wrap{padding:10px;border-radius:18px}.juana-property-main-image{height:300px!important}.juana-property-thumb{flex-basis:125px;height:82px}.juana-property-content-wrap,.juana-related-properties-section{padding-left:12px;padding-right:12px}.juana-property-heading-card,.juana-property-section-card,.juana-property-side-card{padding:20px;border-radius:18px}.juana-property-price{font-size:26px}.juana-property-spec-grid,.juana-related-properties-grid{grid-template-columns:1fr}.juana-property-map{height:290px}.juana-related-property-card{min-height:auto}.juana-related-property-body h3{min-height:auto}}



/* =====================================================
   JUANA MOBILE HAMBURGER MENU - STRONG OVERRIDE
   Fix: hide full nav on mobile and show only three-bar button
===================================================== */

.juana-mobile-menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:1px solid rgba(212,175,55,.45);
    border-radius:10px;
    background:#111827;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    padding:0;
    z-index:10050;
}

.juana-mobile-menu-toggle span{
    display:block;
    width:24px;
    height:3px;
    background:#d4af37;
    border-radius:3px;
    transition:.25s ease;
}

.juana-mobile-menu-toggle.is-active span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}
.juana-mobile-menu-toggle.is-active span:nth-child(2){
    opacity:0;
}
.juana-mobile-menu-toggle.is-active span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

@media (max-width: 980px){
    .header,
    .juana-main-header{
        min-height:68px !important;
        overflow:visible !important;
    }

    .header-inner,
    .juana-header-inner{
        width:100% !important;
        max-width:100% !important;
        min-height:68px !important;
        padding:8px 14px !important;
        display:flex !important;
        flex-direction:row !important;
        align-items:center !important;
        justify-content:space-between !important;
        gap:10px !important;
        position:relative !important;
    }

    .logo-img{
        height:48px !important;
        width:auto !important;
        max-width:82px !important;
    }

    .juana-mobile-menu-toggle{
        display:inline-flex !important;
        order:3 !important;
        flex:0 0 44px !important;
    }

    /* Hide old visible nav completely on mobile */
    .header .nav,
    .header .juana-nav,
    nav#juanaMainNav{
        display:none !important;
        position:absolute !important;
        top:100% !important;
        left:0 !important;
        right:0 !important;
        width:100% !important;
        max-height:calc(100vh - 72px) !important;
        overflow-y:auto !important;
        background:#07111f !important;
        padding:14px !important;
        box-shadow:0 18px 38px rgba(0,0,0,.28) !important;
        border-top:1px solid rgba(212,175,55,.25) !important;
        z-index:10040 !important;
    }

    /* Show only after clicking hamburger */
    .header .nav.is-open,
    .header .juana-nav.is-open,
    nav#juanaMainNav.is-open{
        display:flex !important;
        flex-direction:column !important;
        align-items:stretch !important;
        justify-content:flex-start !important;
        gap:8px !important;
    }

    .header .nav a,
    .header .juana-nav a,
    nav#juanaMainNav a{
        display:block !important;
        width:100% !important;
        padding:12px 14px !important;
        border-radius:12px !important;
        background:rgba(255,255,255,.04) !important;
        color:#fff !important;
        text-align:center !important;
        font-size:15px !important;
        white-space:normal !important;
    }

    .header .nav a:hover,
    .header .juana-nav a:hover,
    nav#juanaMainNav a:hover{
        background:#d4af37 !important;
        color:#111 !important;
    }

    nav#juanaMainNav .juana-social-links,
    nav#juanaMainNav .language-switcher{
        margin:10px auto 0 !important;
        justify-content:center !important;
        width:auto !important;
    }
}

@media (min-width: 981px){
    .header .nav,
    .header .juana-nav,
    nav#juanaMainNav{
        display:flex !important;
    }
}

/* =========================================================
   JUANA PHASE 1 PROFESSIONAL UI/UX UPGRADE
   هدف الملف: تبسيط التنقل، تحسين الواجهة، تحسين الموبايل والسرعة
   ========================================================= */
:root{
  --juana-gold:#d4af37;
  --juana-gold-dark:#aa8420;
  --juana-dark:#07111f;
  --juana-ink:#141414;
  --juana-muted:#687384;
  --juana-soft:#f6f3ec;
  --juana-white:#fff;
  --juana-radius:18px;
  --juana-shadow:0 14px 38px rgba(7,17,31,.12);
}
html{scroll-behavior:smooth;}
body{background:#fff;color:var(--juana-ink);font-family:Tahoma,Arial,sans-serif;line-height:1.75;}
img{max-width:100%;height:auto;}
.header.juana-main-header{background:rgba(7,17,31,.96)!important;border-bottom:1px solid rgba(212,175,55,.22);box-shadow:0 12px 34px rgba(0,0,0,.18);}
.juana-header-inner{width:min(96%,1280px)!important;gap:14px!important;padding:10px 0!important;position:relative;}
.logo-link{display:flex;align-items:center;flex:0 0 auto;}
.logo-img{width:auto!important;height:54px!important;max-width:105px!important;object-fit:contain;}
.juana-nav-v2{display:flex!important;align-items:center!important;justify-content:center!important;gap:6px!important;flex-wrap:wrap!important;}
.juana-nav-v2 a,.juana-dropdown-toggle{font:inherit;font-size:13.5px;font-weight:700;color:#fff!important;background:transparent;border:0;border-radius:999px;padding:9px 11px;line-height:1.2;cursor:pointer;transition:.22s ease;white-space:nowrap;}
.juana-nav-v2 a:hover,.juana-dropdown-toggle:hover,.juana-has-dropdown.is-open>.juana-dropdown-toggle,.juana-contact-link{background:var(--juana-gold)!important;color:#111!important;}
.juana-nav-item{position:relative;display:flex;align-items:center;}
.juana-dropdown-toggle:after{content:"▾";font-size:11px;margin-inline-start:6px;opacity:.9;}
.juana-dropdown-menu{display:none;position:absolute;top:calc(100% + 10px);right:0;min-width:245px;background:#fff;border:1px solid rgba(212,175,55,.32);box-shadow:var(--juana-shadow);border-radius:16px;padding:10px;z-index:10080;}
[dir="ltr"] .juana-dropdown-menu{right:auto;left:0;}
.juana-has-dropdown:hover>.juana-dropdown-menu,.juana-has-dropdown.is-open>.juana-dropdown-menu{display:grid;gap:6px;}
.juana-dropdown-menu a{display:block!important;width:100%!important;color:#172033!important;background:#f7f7f7!important;text-align:inherit!important;border-radius:12px!important;padding:11px 13px!important;font-size:13.5px!important;}
.juana-dropdown-menu a:hover{background:var(--juana-gold)!important;color:#111!important;transform:translateX(-2px);}
.juana-admin-menu>.juana-dropdown-toggle{border:1px solid rgba(212,175,55,.55);color:#f5d879!important;}
.juana-social-links,.juana-footer-social{display:inline-flex!important;align-items:center!important;gap:7px!important;margin:0 6px!important;}
.social-link{width:30px!important;height:30px!important;min-width:30px!important;padding:0!important;border-radius:50%!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;}
.social-link svg{width:15px!important;height:15px!important;fill:currentColor!important;}
.language-switcher select{height:34px!important;border-radius:999px!important;border:1px solid rgba(212,175,55,.5)!important;background:#fff!important;color:#111!important;padding:0 10px!important;font-weight:700!important;}
.juana-mobile-menu-toggle{display:none;width:46px;height:42px;border:1px solid rgba(212,175,55,.5);border-radius:12px;background:rgba(255,255,255,.05);align-items:center;justify-content:center;flex-direction:column;gap:5px;cursor:pointer;}
.juana-mobile-menu-toggle span{display:block;width:22px;height:2px;background:#fff;border-radius:10px;transition:.2s;}
.juana-mobile-menu-toggle.is-active span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.juana-mobile-menu-toggle.is-active span:nth-child(2){opacity:0;}
.juana-mobile-menu-toggle.is-active span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}
.hero{min-height:78vh!important;border-bottom:1px solid rgba(212,175,55,.25);}
.hero-content{background:rgba(7,17,31,.28);border:1px solid rgba(255,255,255,.12);border-radius:26px;backdrop-filter:blur(4px);}
.hero-content h1{font-size:clamp(34px,6vw,66px)!important;color:var(--juana-gold)!important;text-shadow:0 10px 30px rgba(0,0,0,.45);}
.hero-content p{font-size:clamp(18px,2.3vw,28px)!important;}
.btn,.contact-cta a{background:linear-gradient(135deg,var(--juana-gold),#f0cf72)!important;color:#111!important;border-radius:999px!important;font-weight:800!important;padding:11px 20px!important;box-shadow:0 10px 25px rgba(212,175,55,.22);transition:.22s ease!important;border:0!important;}
.btn:hover,.contact-cta a:hover{transform:translateY(-2px);box-shadow:0 14px 30px rgba(212,175,55,.34);}
.btn.dark{background:#07111f!important;color:#fff!important;border:1px solid rgba(212,175,55,.45)!important;}
.search-panel{width:min(94%,1180px)!important;margin:26px auto!important;background:#fff!important;border:1px solid rgba(212,175,55,.28)!important;border-radius:24px!important;box-shadow:var(--juana-shadow)!important;padding:18px!important;display:grid!important;grid-template-columns:repeat(5,minmax(140px,1fr)) auto!important;gap:12px!important;align-items:center!important;}
.search-panel:before{content:"ابحث عن عقارك";grid-column:1/-1;font-size:20px;font-weight:900;color:#111;border-bottom:1px solid #eee;padding-bottom:8px;margin-bottom:2px;}
.search-panel input,.search-panel select{width:100%!important;height:46px!important;border:1px solid #e0e0e0!important;border-radius:14px!important;padding:0 12px!important;background:#fafafa!important;font-weight:700!important;color:#222!important;}
.section{width:min(94%,1220px)!important;margin:54px auto!important;padding:0!important;}
.section-title{font-size:clamp(26px,3vw,40px)!important;color:#111!important;text-align:center!important;margin-bottom:26px!important;position:relative;}
.section-title:after{content:"";display:block;width:82px;height:3px;background:var(--juana-gold);margin:12px auto 0;border-radius:3px;}
.grid,.properties-grid,.blog-grid{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:24px!important;}
.card,.blog-card,.project-card{background:#fff!important;border:1px solid #eee!important;border-radius:22px!important;overflow:hidden!important;box-shadow:0 10px 28px rgba(7,17,31,.08)!important;transition:.22s ease!important;}
.card:hover,.blog-card:hover,.project-card:hover{transform:translateY(-5px);box-shadow:0 18px 42px rgba(7,17,31,.14)!important;}
.card>img,.blog-card>img,.project-card>img{width:100%!important;height:245px!important;object-fit:cover!important;background:#f1f1f1!important;display:block!important;}
.card-body,.blog-card-body{padding:18px!important;}
.badge,.blog-cat{display:inline-flex!important;align-items:center!important;background:rgba(212,175,55,.14)!important;color:#8a650f!important;border:1px solid rgba(212,175,55,.35)!important;border-radius:999px!important;padding:5px 11px!important;font-weight:800!important;font-size:12px!important;margin-bottom:8px!important;}
.card h3,.blog-card h2{font-size:19px!important;line-height:1.45!important;color:#111!important;margin:8px 0!important;}
.meta{color:var(--juana-muted)!important;font-weight:700!important;margin:8px 0!important;}
.price{font-size:20px!important;font-weight:900!important;color:#111!important;margin:10px 0 14px!important;}
.page-hero{min-height:260px!important;background:linear-gradient(135deg,rgba(7,17,31,.92),rgba(7,17,31,.72)),url('assets/images/istanbul/istanbul-hero.jpg') center/cover!important;color:#fff!important;display:flex!important;align-items:center!important;justify-content:center!important;text-align:center!important;padding:50px 18px!important;}
.page-hero h1{font-size:clamp(30px,4vw,52px)!important;color:var(--juana-gold)!important;margin:0 0 10px!important;}
.page-hero p{max-width:900px;margin:auto!important;font-size:18px!important;color:#f5f5f5!important;}
.juana-longtail-seo-box{width:min(100%,1100px)!important;margin:0 auto 28px!important;background:var(--juana-soft)!important;border:1px solid rgba(212,175,55,.24)!important;border-radius:22px!important;padding:22px!important;text-align:center!important;}
.juana-longtail-links{display:flex!important;flex-wrap:wrap!important;gap:9px!important;justify-content:center!important;margin-top:12px!important;}
.juana-longtail-links a{background:#fff!important;color:#111!important;border:1px solid #e6dfcf!important;border-radius:999px!important;padding:8px 12px!important;font-weight:800!important;}
.contact-cta{width:min(94%,1180px)!important;margin:60px auto!important;border-radius:26px!important;background:linear-gradient(135deg,#07111f,#14243b)!important;color:#fff!important;padding:40px 24px!important;text-align:center!important;box-shadow:var(--juana-shadow)!important;}
.footer{background:#07111f!important;color:#fff!important;text-align:center!important;padding:38px 18px!important;border-top:3px solid var(--juana-gold)!important;}
.whatsapp{position:fixed!important;bottom:22px!important;right:22px!important;z-index:10070!important;width:58px!important;height:58px!important;border-radius:50%!important;background:#25d366!important;color:#fff!important;display:flex!important;align-items:center!important;justify-content:center!important;font-size:27px!important;box-shadow:0 12px 28px rgba(37,211,102,.35)!important;}
@media(max-width:1100px){.search-panel{grid-template-columns:repeat(3,minmax(0,1fr))!important}.grid,.properties-grid,.blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.juana-nav-v2 a,.juana-dropdown-toggle{font-size:12.5px;padding:8px 9px;}}
@media(max-width:980px){
  .juana-header-inner{width:94%!important;}
  .juana-mobile-menu-toggle{display:inline-flex!important;}
  .juana-nav-v2{display:none!important;position:absolute!important;top:100%!important;left:0!important;right:0!important;width:100%!important;max-height:calc(100vh - 74px)!important;overflow-y:auto!important;background:#07111f!important;padding:14px!important;border-top:1px solid rgba(212,175,55,.25)!important;box-shadow:0 18px 38px rgba(0,0,0,.28)!important;z-index:10060!important;}
  .juana-nav-v2.is-open{display:flex!important;flex-direction:column!important;align-items:stretch!important;gap:8px!important;}
  .juana-nav-item{display:block!important;width:100%!important;}
  .juana-nav-v2 a,.juana-dropdown-toggle{display:block!important;width:100%!important;text-align:center!important;background:rgba(255,255,255,.05)!important;border-radius:14px!important;padding:13px 14px!important;font-size:15px!important;color:#fff!important;}
  .juana-dropdown-menu{position:static!important;min-width:0!important;width:100%!important;margin-top:8px!important;background:rgba(255,255,255,.06)!important;border-color:rgba(212,175,55,.18)!important;box-shadow:none!important;}
  .juana-dropdown-menu a{background:rgba(255,255,255,.08)!important;color:#fff!important;}
  .juana-social-links,.language-switcher{justify-content:center!important;margin:8px auto!important;}
  .search-panel{grid-template-columns:1fr!important;border-radius:18px!important;}
  .grid,.properties-grid,.blog-grid{grid-template-columns:1fr!important;gap:18px!important;}
  .card>img,.blog-card>img,.project-card>img{height:230px!important;}
  .hero{min-height:70vh!important;}
  .hero-content{border-radius:18px;padding:28px 16px!important;}
}
@media(max-width:520px){.logo-img{height:46px!important}.whatsapp{width:52px!important;height:52px!important;bottom:16px!important;right:16px!important}.card>img,.blog-card>img,.project-card>img{height:210px!important}.section{margin:38px auto!important}.page-hero{min-height:220px!important}}

/* =====================================================
   JUANA PHASE 1 - PROJECTS PAGE HEADER FIX 2026-06-25
   Purpose: compact grouped desktop navigation + clean mobile drawer
===================================================== */
.header.juana-main-header,
.juana-main-header{
    min-height:72px !important;
    background:#07111f !important;
    overflow:visible !important;
}
.juana-header-inner,
.header-inner{
    max-width:1420px !important;
    min-height:72px !important;
    padding:10px 22px !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between !important;
}
.juana-nav-v2,
.header .juana-nav-v2,
nav#juanaMainNav.juana-nav-v2{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:8px !important;
    flex-wrap:nowrap !important;
    width:auto !important;
    max-width:100% !important;
    overflow:visible !important;
}
.juana-nav-v2 .juana-nav-link,
.juana-nav-v2 .juana-dropdown-toggle,
.juana-nav-v2 > a{
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    height:42px !important;
    padding:0 11px !important;
    border:0 !important;
    border-radius:999px !important;
    background:transparent !important;
    color:#fff !important;
    font-family:inherit !important;
    font-size:13.5px !important;
    font-weight:800 !important;
    line-height:1 !important;
    white-space:nowrap !important;
    text-decoration:none !important;
    cursor:pointer !important;
}
.juana-nav-v2 .juana-dropdown-toggle::after{
    content:"▾";
    display:inline-block;
    margin-inline-start:6px;
    color:#d4af37;
    font-size:11px;
}
.juana-nav-v2 .juana-nav-link:hover,
.juana-nav-v2 .juana-dropdown-toggle:hover,
.juana-nav-v2 .juana-has-dropdown.is-open > .juana-dropdown-toggle{
    background:rgba(212,175,55,.14) !important;
    color:#d4af37 !important;
}
.juana-nav-v2 .juana-contact-link{
    background:#d4af37 !important;
    color:#07111f !important;
    padding-inline:15px !important;
}
.juana-nav-v2 .juana-admin-menu > .juana-dropdown-toggle{
    border:1px solid rgba(212,175,55,.55) !important;
    color:#d4af37 !important;
}
.juana-nav-item,
.juana-has-dropdown{
    position:relative !important;
    display:inline-flex !important;
    align-items:center !important;
    flex:0 0 auto !important;
}
.juana-dropdown-menu{
    position:absolute !important;
    top:calc(100% + 12px) !important;
    inset-inline-start:0 !important;
    min-width:235px !important;
    display:none !important;
    flex-direction:column !important;
    gap:4px !important;
    padding:10px !important;
    background:#fff !important;
    border:1px solid rgba(15,23,42,.08) !important;
    border-radius:16px !important;
    box-shadow:0 24px 55px rgba(0,0,0,.22) !important;
    z-index:10080 !important;
}
html[dir="rtl"] .juana-dropdown-menu,
body[dir="rtl"] .juana-dropdown-menu{right:0 !important;left:auto !important;}
.juana-has-dropdown:hover > .juana-dropdown-menu,
.juana-has-dropdown.is-open > .juana-dropdown-menu{
    display:flex !important;
}
.juana-dropdown-menu a,
.header .juana-dropdown-menu a,
nav#juanaMainNav .juana-dropdown-menu a{
    display:flex !important;
    align-items:center !important;
    width:100% !important;
    min-height:40px !important;
    padding:10px 12px !important;
    border-radius:10px !important;
    background:#fff !important;
    color:#07111f !important;
    font-size:13.5px !important;
    font-weight:800 !important;
    text-align:inherit !important;
    white-space:nowrap !important;
    text-decoration:none !important;
}
.juana-dropdown-menu a:hover{
    background:#f3eee4 !important;
    color:#b88716 !important;
}
.juana-nav-v2 .juana-social-links{
    display:inline-flex !important;
    gap:7px !important;
    margin:0 4px !important;
    flex:0 0 auto !important;
}
.juana-nav-v2 .social-link{
    width:34px !important;
    height:34px !important;
    min-width:34px !important;
}
.juana-nav-v2 .social-link svg{width:17px !important;height:17px !important;}
.juana-nav-v2 .language-switcher{
    margin:0 !important;
    flex:0 0 auto !important;
}
.juana-nav-v2 .language-switcher select{
    height:36px !important;
    border-radius:10px !important;
    padding:0 10px !important;
    font-size:13px !important;
}

@media (max-width:1250px) and (min-width:981px){
    .juana-nav-v2 .juana-nav-link,
    .juana-nav-v2 .juana-dropdown-toggle,
    .juana-nav-v2 > a{font-size:12.5px !important;padding-inline:8px !important;}
    .juana-nav-v2{gap:5px !important;}
    .juana-nav-v2 .social-link{width:30px !important;height:30px !important;min-width:30px !important;}
}

@media (max-width:980px){
    .header.juana-main-header,
    .juana-main-header{min-height:68px !important;}
    .juana-header-inner,
    .header-inner{padding:8px 14px !important;min-height:68px !important;}
    .juana-mobile-menu-toggle{display:inline-flex !important;}
    .juana-nav-v2,
    .header .juana-nav-v2,
    nav#juanaMainNav.juana-nav-v2{
        display:none !important;
        position:absolute !important;
        top:100% !important;
        left:0 !important;
        right:0 !important;
        width:100% !important;
        max-height:calc(100vh - 68px) !important;
        overflow-y:auto !important;
        background:#07111f !important;
        padding:14px !important;
        box-shadow:0 18px 38px rgba(0,0,0,.32) !important;
        border-top:1px solid rgba(212,175,55,.25) !important;
        z-index:10040 !important;
        flex-direction:column !important;
        align-items:stretch !important;
        justify-content:flex-start !important;
        gap:8px !important;
    }
    .juana-nav-v2.is-open,
    .header .juana-nav-v2.is-open,
    nav#juanaMainNav.juana-nav-v2.is-open{display:flex !important;}
    .juana-nav-v2 .juana-nav-link,
    .juana-nav-v2 .juana-dropdown-toggle,
    .juana-nav-v2 > a{
        width:100% !important;
        height:auto !important;
        min-height:46px !important;
        padding:13px 15px !important;
        border-radius:12px !important;
        background:rgba(255,255,255,.05) !important;
        justify-content:center !important;
        color:#fff !important;
        font-size:15px !important;
        white-space:normal !important;
    }
    .juana-nav-item,
    .juana-has-dropdown{display:flex !important;flex-direction:column !important;width:100% !important;align-items:stretch !important;}
    .juana-dropdown-menu{
        position:static !important;
        display:none !important;
        width:100% !important;
        min-width:0 !important;
        margin:7px 0 4px !important;
        padding:8px !important;
        border-radius:14px !important;
        background:rgba(255,255,255,.08) !important;
        box-shadow:none !important;
        border:1px solid rgba(212,175,55,.18) !important;
    }
    .juana-has-dropdown.is-open > .juana-dropdown-menu{display:flex !important;}
    .juana-has-dropdown:hover > .juana-dropdown-menu{display:none !important;}
    .juana-has-dropdown.is-open:hover > .juana-dropdown-menu{display:flex !important;}
    .juana-dropdown-menu a,
    .header .juana-dropdown-menu a,
    nav#juanaMainNav .juana-dropdown-menu a{
        background:rgba(255,255,255,.06) !important;
        color:#fff !important;
        justify-content:center !important;
        text-align:center !important;
        white-space:normal !important;
    }
    .juana-nav-v2 .juana-social-links,
    .juana-nav-v2 .language-switcher{margin:8px auto 0 !important;justify-content:center !important;}
}


/* =====================================================
   JUANA FINAL SITE CLEANUP 2026
   SEO / UX / Translation / Property Details polish
===================================================== */
:root{--juana-navy:#07111f;--juana-gold:#d6aa38;--juana-soft:#f7f4ec;--juana-border:rgba(7,17,31,.08)}
html{scroll-behavior:smooth}body{overflow-x:hidden!important}
/* Compact global headers */
.header,.juana-main-header,.professional-header{min-height:58px!important}.header-inner,.juana-header-inner,.professional-header-inner{min-height:58px!important;padding:6px 14px!important}.logo-img,.professional-logo .logo-img{height:40px!important;max-height:42px!important;width:auto!important}.nav a,.juana-nav a,.juana-nav-v3 .nav-link,.juana-nav-v3 .dropdown-toggle{font-size:12.8px!important;padding:7px 7px!important;min-height:34px!important;height:auto!important}.compact-lang select,.language-switcher select{height:32px!important;font-size:12px!important}
/* Property details premium layout */
.jp-container{width:min(96%,1420px)!important;margin-inline:auto!important}.jp-hero{padding:24px 0 20px!important;min-height:auto!important;background:linear-gradient(135deg,#07111f,#18263a)!important}.jp-hero h1{font-size:clamp(24px,2.6vw,38px)!important;line-height:1.35!important;margin:10px 0!important}.jp-breadcrumb{font-size:13px!important;margin-bottom:8px!important}.jp-location{margin:6px 0 10px!important}.jp-hero-actions{gap:10px!important;align-items:center!important}.jp-price{font-size:clamp(20px,2.2vw,30px)!important;direction:ltr!important;unicode-bidi:embed!important}.jp-btn{padding:10px 17px!important;border-radius:999px!important}.jp-main-grid{grid-template-columns:minmax(0,1fr) 330px!important;gap:22px!important}.jp-card{border-radius:20px!important;box-shadow:0 14px 36px rgba(7,17,31,.08)!important;border:1px solid var(--juana-border)!important}.jp-main-image-wrap{height:auto!important}.jp-main-image-wrap img,#jpMainImage{width:100%!important;height:clamp(330px,44vw,560px)!important;object-fit:cover!important;border-radius:16px!important}.jp-thumbs{display:flex!important;gap:10px!important;overflow-x:auto!important;padding:12px 2px 4px!important}.jp-thumb{flex:0 0 132px!important;height:86px!important;border-radius:12px!important;position:relative!important}.jp-thumb img{width:100%!important;height:100%!important;object-fit:cover!important}.jp-video-thumb{max-width:132px!important}.jp-video-thumb .jp-play-mark{position:absolute!important;inset:0!important;margin:auto!important;width:42px!important;height:42px!important;border-radius:50%!important;background:rgba(7,17,31,.82)!important;color:#fff!important;display:flex!important;align-items:center!important;justify-content:center!important;font-size:18px!important;padding-left:2px!important}.jp-video-lightbox video{width:min(900px,92vw)!important;max-height:70vh!important;aspect-ratio:16/9!important;background:#000!important;border-radius:16px!important}.jp-section-head h2{font-size:clamp(21px,2vw,28px)!important}.jp-description-text{font-size:17px!important;line-height:2.05!important;color:#344054!important}.jp-spec-grid{grid-template-columns:repeat(auto-fit,minmax(155px,1fr))!important}.jp-spec strong{font-size:15px!important}.jp-side-card{top:82px!important}.jp-side-card .jp-phone-number,.jp-side-btn.call{direction:ltr!important;unicode-bidi:embed!important;font-family:Arial,sans-serif!important;letter-spacing:.2px!important}.jp-nearby-grid{grid-template-columns:repeat(auto-fit,minmax(230px,1fr))!important}.jp-faq-item summary{font-weight:900!important;color:#07111f!important}.jp-related-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important}.jp-related-card img{height:220px!important;object-fit:cover!important}.jp-empty{grid-column:1/-1!important}
/* Listing cards: use SEO description cleanly */
.property-card .property-card-body p,.property-card .card-body p{line-height:1.75!important}.properties-grid{grid-template-columns:repeat(auto-fit,minmax(280px,1fr))!important}.property-card h2,.property-card h3{line-height:1.45!important}
/* Project translation and layout polish */
.project-lead-actions .call,.jp-side-btn.call{white-space:nowrap!important}.trust-row span{white-space:normal!important}.project-mini{line-height:1.6!important}
/* Mobile */
@media(max-width:1050px){.jp-main-grid{grid-template-columns:1fr!important}.jp-side-card{position:static!important}.jp-related-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}}
@media(max-width:680px){.jp-container{width:94%!important}.jp-hero{padding:18px 0!important}.jp-hero h1{font-size:23px!important}.jp-hero-actions{display:grid!important;grid-template-columns:1fr!important}.jp-btn{width:100%!important;text-align:center!important}.jp-main-image-wrap img,#jpMainImage{height:285px!important}.jp-thumb{flex-basis:108px!important;height:72px!important}.jp-video-thumb .jp-play-mark{width:34px!important;height:34px!important}.jp-related-grid{grid-template-columns:1fr!important}.jp-card{padding:18px!important}.jp-nearby-grid{grid-template-columns:1fr!important}}


/* JUANA ONE-PASS UI FIX 2026-07-24: click-only dropdowns, full property images, one visual layer */
@media (min-width:981px){
  .juana-public-dropdown:hover > details:not([open]) > .juana-public-dropdown-menu,
  .juana-menu details:not([open]) > .juana-public-dropdown-menu{display:none!important;}
  .juana-menu details[open] > .juana-public-dropdown-menu{display:block!important;}
}
.juana-public-dropdown-menu{pointer-events:auto!important;}
.property-card,.property-card.card,.juana-card-pro{position:relative!important;isolation:isolate!important;overflow:hidden!important;background:#fff!important;}
.property-card::before,.property-card::after,.juana-card-pro::before,.juana-card-pro::after{content:none!important;display:none!important;}
.property-card>a:first-child,.property-card .property-slider,.property-card .property-slider-track{position:relative!important;z-index:1!important;background:#f3f4f6!important;overflow:hidden!important;}
.property-card>a:first-child img,.property-card .property-slider img,.property-card .property-slide,.properties-grid .property-card img{width:100%!important;height:260px!important;max-height:260px!important;object-fit:contain!important;object-position:center center!important;background:#f3f4f6!important;display:block!important;position:relative!important;z-index:2!important;}
.property-card .property-slide{display:none!important;}
.property-card .property-slide.active{display:block!important;}
.property-card .card-body,.property-card .property-card-body{position:relative!important;z-index:3!important;background:#fff!important;transform:none!important;margin:0!important;}
.property-card .card-body::before,.property-card .card-body::after,.property-card .property-card-body::before,.property-card .property-card-body::after{content:none!important;display:none!important;}
.property-card .badge,.property-card .meta,.property-card h2,.property-card h3,.property-card p,.property-card .price{position:static!important;transform:none!important;}
@media(max-width:680px){.property-card>a:first-child img,.property-card .property-slider img,.property-card .property-slide,.properties-grid .property-card img{height:230px!important;max-height:230px!important;}}


/* JUANA DB-INTEGRATED FINAL 2026-07-24 */
.juana-menu details:not([open])>.juana-public-dropdown-menu{display:none!important;visibility:hidden!important;opacity:0!important}
.juana-menu details[open]>.juana-public-dropdown-menu{display:block!important;visibility:visible!important;opacity:1!important}
.juana-menu summary{cursor:pointer}
.property-card .property-slider-track{display:block!important;height:280px!important;background:#f4f5f7!important}
.property-card .property-slide{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;object-fit:contain!important;opacity:0!important;visibility:hidden!important;display:block!important}
.property-card .property-slide.active{opacity:1!important;visibility:visible!important}
.property-card .card-body{position:relative!important;inset:auto!important;background:#fff!important;color:inherit!important;padding:18px!important}
.property-card .card-body>*{position:relative!important;inset:auto!important;opacity:1!important;visibility:visible!important}
.property-card .card-body h3,.property-card .card-body .meta,.property-card .card-body .property-specs,.property-card .card-body .price{background:transparent!important}
.juana-home-featured,.juana-home-projects{max-width:1180px;margin:34px auto;padding:0 20px}.juana-home-section-head{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:18px}.juana-home-section-head a{font-weight:800}.juana-home-project-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px}.juana-home-project-grid article{background:#fff;border-radius:18px;overflow:hidden;box-shadow:0 10px 28px rgba(7,17,31,.08)}.juana-home-project-grid a{text-decoration:none;color:inherit}.juana-home-project-grid img{width:100%;height:220px;object-fit:contain;background:#f4f5f7;display:block}.juana-home-project-grid h3,.juana-home-project-grid p{padding-inline:16px}.juana-home-project-grid p{padding-bottom:16px}


/* JUANA LANGUAGE DIRECTION SSOT 2026-07-25 */
html[dir="rtl"],html[dir="rtl"] body{direction:rtl}
html[dir="ltr"],html[dir="ltr"] body{direction:ltr}
html[dir="rtl"] :where(input,textarea,select,option){direction:rtl;text-align:right}
html[dir="ltr"] :where(input,textarea,select,option){direction:ltr;text-align:left}
html[dir="rtl"] :where(main article,main .card-body,main .property-card-body,main .content,main .description,main .jwv3-card>div,main .jkp-content,main .jkp-grid article>div,main .jp-card-body,main .jt-hero-content){direction:rtl;text-align:right}
html[dir="ltr"] :where(main article,main .card-body,main .property-card-body,main .content,main .description,main .jwv3-card>div,main .jkp-content,main .jkp-grid article>div,main .jp-card-body,main .jt-hero-content){direction:ltr;text-align:left}
html[dir="rtl"] :where(ul,ol){padding-inline-start:0;padding-inline-end:1.35em}
html[dir="ltr"] :where(ul,ol){padding-inline-start:1.35em;padding-inline-end:0}
html[dir] :where(.text-center,.jwv3-hero,.jp-hero,.jkp-hero,.juana-page-hero){text-align:center}
html[dir] :where([dir="ltr"],.phone,.price,.amount,.number){direction:ltr;unicode-bidi:embed}
.juana-visually-hidden{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}
