@charset "utf-8";

:root {
    --primary: #046E72;
    --primary-dark: #035A5D;
    --primary-light: #E6F5F5;
    --accent: #e8a825;
    --accent-light: #fef7e8;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --border: #e5e5e5;
    --bg: #f7f8fa;
    --white: #fff;
    --shadow: 0 2px 12px rgba(0,0,0,.08);
    --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "Microsoft YaHei","PingFang SC","Helvetica Neue",Arial,sans-serif; color: var(--text); background: var(--bg); font-size: 14px; line-height: 1.6; }
a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; }
ul,ol { list-style: none; }

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

/* ========== TOP BAR ========== */
.site-topbar { background: var(--text); color: #ccc; font-size: 12px; height: 36px; line-height: 36px; }
.site-topbar a { color: #ccc; margin-left: 20px; }
.site-topbar a:hover { color: #fff; }
.site-topbar .topbar-right { float: right; }

/* ========== HEADER / NAV ========== */
.site-header { background: var(--white); box-shadow: 0 1px 4px rgba(0,0,0,.06); position: sticky; top: 0; z-index: 1000; }
.site-header .container { display: flex; align-items: center; height: 70px; }
.site-logo img { height: 28px; width: auto; vertical-align: middle; }
.site-nav { margin-left: auto; display: flex; gap: 4px; }
.site-nav a { display: block; padding: 8px 18px; color: var(--text); font-size: 15px; border-radius: var(--radius); transition: all .2s; }
.site-nav a:hover, .site-nav a.active { color: var(--primary); background: var(--primary-light); }
.site-nav-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--text); margin-left: auto; }

/* ========== BANNER ========== */
.site-banner { position: relative; height: 480px; overflow: hidden; color: #fff; }
.site-banner .banner-slider { position: absolute; inset: 0; display: flex; transition: transform .8s ease; }
.site-banner .banner-slide { min-width: 100%; height: 100%; background-size: cover; background-position: center; }
.site-banner .banner-dots { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.site-banner .banner-dots .dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.5); cursor: pointer; }
.site-banner .banner-dots .dot.active { background: #fff; }
.site-banner .container { position: relative; z-index: 2; padding-top: 100px; text-align: center; }
.site-banner h1 { font-size: 42px; font-weight: 700; margin-bottom: 12px; text-shadow: 0 2px 8px rgba(0,0,0,.3); }
.site-banner p { font-size: 22px; opacity: .9; margin-bottom: 40px; text-shadow: 0 1px 4px rgba(0,0,0,.3); }

/* Search box */
.banner-search { max-width: 720px; margin: 0 auto; background: transparent; border-radius: 8px; padding: 20px 24px; }
.banner-search .search-row { display: flex; gap: 12px; align-items: center; }
.banner-search select, .banner-search input { height: 44px; border: 1px solid var(--border); border-radius: var(--radius); padding: 0 14px; font-size: 14px; color: var(--text); background: var(--white); }
.banner-search select { flex: 1; appearance: auto; }
.banner-search .btn-search { height: 44px; padding: 0 32px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius); font-size: 16px; font-weight: 600; cursor: pointer; transition: background .2s; white-space: nowrap; }
.banner-search .btn-search:hover { background: var(--primary-dark); }

/* ========== SECTION COMMON ========== */
.section { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 28px; color: var(--text); margin:0 0 8px; }
.section-title p { color: var(--text-muted); font-size: 15px; }
.section-title .title-line { width: 40px; height: 3px; background: var(--primary); margin: 12px auto 0; border-radius: 2px; }

/* ========== QUICK AREA CARDS ========== */
.area-cards { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.area-card { background: var(--white); border-radius: var(--radius); padding: 28px 16px; text-align: center; box-shadow: var(--shadow); transition: all .25s; cursor: pointer; border: 2px solid transparent; }
.area-card:hover { border-color: var(--primary); transform: translateY(-4px); }
.area-card .area-icon { width: 90px; height: 90px; margin: 0 auto 12px; border-radius: 50%; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.area-card .area-icon img { width: 100%; height: 100%; object-fit: cover; }
.area-card h3 { font-size: 16px; margin-bottom: 4px; }
.area-card p { font-size: 12px; color: var(--text-muted); }

/* ========== PROPERTY CARD ========== */
.property-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.property-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all .25s; }
.property-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.property-card .card-img { position: relative; height: 180px; background: #e9ecef; overflow: hidden; }
.property-card .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.property-card:hover .card-img img { transform: scale(1.05); }
.property-card .card-img .tag { position: absolute; top: 10px; left: 10px; background: var(--primary); color: #fff; font-size: 12px; padding: 2px 10px; border-radius: 3px; }
.property-card .card-img .tag-hot { background: #e74c3c; }
.property-card .card-body { padding: 16px; }
.property-card .card-body h3 { font-size: 16px; margin:0 0 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.property-card .card-body h3 a { color: #333; }
.property-card .card-body .meta { display: flex; gap: 12px; font-size: 13px; color: var(--text-light); margin-bottom: 10px; }
.property-card .card-body .price { color: #e74c3c; font-size: 20px; font-weight: 700; }
.property-card .card-body .price small { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.property-card .card-body .price-row { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.property-card .card-body .price-row .p-main { color: #e74c3c; font-size: 20px; font-weight: 700; }
.property-card .card-body .price-row .p-main small { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.property-card .card-body .price-row .p-sub { color: var(--primary); font-size: 14px; font-weight: 600; }
.property-card .card-body .price-row .p-sub small { font-size: 12px; font-weight: 400; color: var(--text-muted); }
.p-total-price { color: #f60 !important; }
.p-total-price small { color: #f60 !important; }
.property-card .card-body .card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.property-card .card-body .card-tags span { font-size: 12px; padding: 2px 8px; background: var(--primary-light); color: var(--primary); border-radius: 3px; }

/* ========== SERVICE SECTION ========== */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-item { text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); transition: all .25s; }
.service-item:hover { transform: translateY(-4px); }
.service-item .svc-icon { width: 64px; height: 64px; margin: 0 auto 16px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.service-item .svc-icon svg { width: 28px; height: 28px; fill: var(--primary); }
.service-item h3 { font-size: 18px; margin-bottom: 8px; }
.service-item p { color: var(--text-light); font-size: 14px; }

/* ========== STATS ========== */
.stats-bar { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); text-align: center; }
.stat-item .stat-num { font-size: 42px; font-weight: 700; }
.stat-item .stat-num span { font-size: 20px; }
.stat-item .stat-label { font-size: 15px; opacity: .8; margin-top: 4px; }

/* ========== FILTER BAR ========== */
.filter-bar { background: var(--white); padding: 20px 24px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 24px; }
.filter-bar .filter-row { display: flex; align-items: center; padding: 8px 0; border-bottom: 1px dashed var(--border); position: relative; }
.filter-bar .filter-row:last-child { border-bottom: none; }
.filter-bar .filter-label { font-weight: 600; width: 80px; flex-shrink: 0; color: var(--text); line-height: 28px; }
.filter-bar .filter-options { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; flex: 1; }
.filter-bar .filter-options.collapsed { overflow: hidden; max-height: 36px; }
.filter-bar .filter-options a { padding: 4px 14px; border-radius: 4px; font-size: 13px; color: var(--text-light); white-space: nowrap; }
.filter-bar .filter-options a:hover, .filter-bar .filter-options a.active { background: var(--primary); color: #fff; }
.filter-bar .filter-more { flex-shrink: 0; margin-left: 0; padding: 4px 14px; border-radius: 4px; font-size: 13px; color: var(--text-light); cursor: pointer; white-space: nowrap; text-decoration: none; }
.filter-bar .filter-more:hover { border-color: var(--primary); color: var(--primary); }

/* ========== LISTING LAYOUT ========== */
.listing-layout { display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
.listing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* Sidebar */
.sidebar .widget { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); margin-bottom: 20px; }
.sidebar .widget h3 { font-size: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); margin-bottom: 12px; }
.sidebar .widget ul li { padding: 6px 0; border-bottom: 1px dashed var(--border); }
.sidebar .widget ul li:last-child { border-bottom: none; }
.sidebar .widget ul li a { color: var(--text-light); font-size: 13px; text-decoration: none; }
.sidebar .widget ul li a:hover { color: var(--primary); }
.sidebar .widget .rank-num { display: inline-block; width: 20px; height: 20px; text-align: center; line-height: 20px; font-size: 12px; border-radius: 3px; margin-right: 6px; background: #eee; color: var(--text-muted); }
.sidebar .widget .rank-num.top3 { background: var(--primary); color: #fff; }
.sidebar .consult-box { text-align: center; padding: 24px; }
.sidebar .consult-box p { margin-bottom: 12px; color: var(--text-light); }
.sidebar .consult-box .btn-consult { display: inline-block; padding: 10px 30px; background: var(--primary); color: #fff; border-radius: var(--radius); font-size: 15px; }
.sidebar .consult-box .btn-consult:hover { background: var(--primary-dark); color: #fff; }

/* ========== DETAIL PAGE ========== */
.detail-gallery { background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); margin-bottom: 24px; }
.detail-gallery .gallery-main { height: 420px; border-radius: var(--radius); overflow: hidden; background: #e9ecef; margin-bottom: 12px; }
.detail-gallery .gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery .gallery-thumbs { display: flex; gap: 8px; }
.detail-gallery .gallery-thumbs .thumb { width: 80px; height: 60px; border-radius: 4px; overflow: hidden; cursor: pointer; border: 2px solid transparent; opacity: .7; transition: all .2s; }
.detail-gallery .gallery-thumbs .thumb.active, .detail-gallery .gallery-thumbs .thumb:hover { border-color: var(--primary); opacity: 1; }
.detail-gallery .gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

.detail-info { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.detail-info h1 { font-size: 24px; margin-bottom: 12px; }
.detail-info .info-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.detail-info .info-tags span { padding: 4px 12px; background: var(--accent-light); color: var(--accent); border-radius: 4px; font-size: 13px; font-weight: 600; }
.detail-info .info-price { font-size: 28px; color: #e74c3c; font-weight: 700; margin-bottom: 4px; }
.detail-info .info-price small { font-size: 14px; color: var(--text-muted); font-weight: 400; }
.detail-info .info-price-sub { font-size: 16px; color: var(--primary); font-weight: 600; margin-bottom: 16px; }
.detail-info .info-price-sub small { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.detail-info .info-table { width: 100%; border-collapse: collapse; }
.detail-info .info-table th, .detail-info .info-table td { padding: 10px 12px; border-bottom: 1px dashed var(--border); text-align: left; font-size: 14px; }
.detail-info .info-table th { width: 120px; color: var(--text-muted); font-weight: 400; background: #fafafa; }

.detail-desc { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 24px; }
.detail-desc h2 { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.detail-desc .desc-content { color: var(--text-light); line-height: 1.8; }

.detail-contact { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.detail-contact h2 { font-size: 18px; margin-bottom: 16px; }
.detail-contact .contact-form .form-group { margin-bottom: 14px; display: flex; gap: 8px; align-items: center; }
.detail-contact .contact-form input, .detail-contact .contact-form select, .detail-contact .contact-form textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; outline: none; transition: border-color .2s; box-sizing: border-box; }
.detail-contact .contact-form .gender-select { width: 80px; flex-shrink: 0; height: 42px; padding: 0 28px 0 10px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 10px center; appearance: none; -webkit-appearance: none; cursor: pointer; }
.detail-contact .contact-form .form-group input[name="name"] { flex: 1; }
.detail-contact .contact-form input:focus, .detail-contact .contact-form select:focus, .detail-contact .contact-form textarea:focus { border-color: var(--primary); }
.detail-contact .contact-form select { height: 42px; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.detail-contact .contact-form textarea { height: 80px; resize: vertical; }
.detail-contact .contact-form .btn-submit { width: 100%; padding: 12px; background: var(--primary); color: #fff; border: none; border-radius: var(--radius); font-size: 16px; cursor: pointer; }
.detail-contact .contact-form .btn-submit:hover { background: var(--primary-dark); }

/* ========== AREA PAGE ========== */
.area-intro { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); margin-bottom: 24px; }
.area-intro h1 { font-size: 24px; margin-bottom: 16px; }
.area-intro .intro-text { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.area-advantages { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 20px; }
.area-advantages .adv-item { background: var(--primary-light); padding: 20px; border-radius: var(--radius); }
.area-advantages .adv-item h3 { color: var(--primary); font-size: 16px; margin-bottom: 6px; }
.area-advantages .adv-item p { font-size: 13px; color: var(--text-light); }
.area-extra { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.area-extra .extra-box { background: #fafafa; padding: 16px 20px; border-radius: var(--radius); }
.area-extra .extra-box h3 { font-size: 15px; margin-bottom: 8px; color: var(--primary); }
.area-extra .extra-box p { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ========== NEWS ========== */
/* ========== NEWS ========== */
.news-tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.news-tab { padding: 5px 16px; font-size: 13px; color: var(--text-light); text-decoration: none; border: 1px solid var(--border); border-radius: 4px; transition: all .15s; }
.news-tab:hover { color: var(--primary); border-color: var(--primary); }
.news-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.news-list { flex: 1; }
.news-item { margin-bottom: 16px; }
.news-item-link { display: flex; gap: 20px; background: var(--white); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); text-decoration: none; transition: box-shadow .2s; }
.news-item-link:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); text-decoration: none; }
.news-img { width: 200px; height: 130px; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; background: #e9ecef; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }
.news-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary), #2196F3); }
.news-img-placeholder span { font-size: 40px; color: rgba(255,255,255,.3); font-weight: 700; }
.news-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.news-body h3 { font-size: 17px; line-height: 1.6; color: var(--text); margin:0 0 8px; }
.news-item-link:hover h3 { color: var(--primary); }
.news-summary { font-size: 14px; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.news-meta-row { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.news-meta-row .news-tag { background: none; padding: 0; color: var(--primary); font-size: 13px; }
.news-divider { color: var(--border); }

.news-detail-content { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.news-detail-content h1 { font-size: 24px; margin-bottom: 16px; text-align: center; }
.news-detail-content .news-meta { text-align: center; color: var(--text-muted); font-size: 13px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.news-detail-content .news-body { line-height: 1.9; color: var(--text-light); font-size: 15px; }
.news-detail-content .news-body p { margin-bottom: 16px; }

/* ========== ABOUT ========== */
.about-section { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); margin-bottom: 24px; }
.about-section h2 { font-size: 22px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--primary); }
.about-section .about-text { color: var(--text-light); line-height: 1.9; }
.advantages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.advantage-card { text-align: center; padding: 32px 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.advantage-card .adv-icon { width: 56px; height: 56px; margin: 0 auto 14px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.advantage-card h3 { font-size: 16px; margin-bottom: 6px; }
.advantage-card p { font-size: 13px; color: var(--text-light); }

.partners-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.partner-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; height: 100px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--text-muted); }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 24px; }
.contact-info-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.contact-info-card h2 { font-size: 22px; margin-bottom: 24px; }
.contact-info-card .info-line { display: flex; align-items: flex-start; margin-bottom: 20px; }
.contact-info-card .info-line .info-icon { width: 40px; height: 40px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 14px; flex-shrink: 0; }
.contact-info-card .info-line .info-text h4 { font-size: 14px; margin-bottom: 2px; }
.contact-info-card .info-line .info-text p { font-size: 13px; color: var(--text-light); }
.contact-qrcode { display: flex; gap: 24px; margin-top: 24px; }
.contact-qrcode .qr-item { text-align: center; }
.contact-qrcode .qr-item .qr-img { width: 120px; height: 120px; background: #f0f0f0; border-radius: var(--radius); margin-bottom: 8px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 12px; }
.contact-qrcode .qr-item p { font-size: 13px; color: var(--text-light); }
.contact-form-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.contact-form-card h2 { font-size: 22px; margin-bottom: 24px; }

/* ========== FOOTER ========== */
.site-footer { background: #1f2937; color: #9ca3af; padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 30px; }
.footer-about .footer-logo { margin-bottom: 12px; }
.footer-about .footer-logo img { height: 52px; width: auto; }
.footer-about p { font-size: 13px; line-height: 1.8; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #9ca3af; font-size: 13px; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #374151; margin-top: 36px; padding: 16px 0; text-align: center; font-size: 12px; }

/* ========== FIXED BOTTOM BAR ========== */
.fixed-bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--white); box-shadow: 0 -2px 12px rgba(0,0,0,.1); padding: 10px 0; }
.fixed-bottom-bar .container { display: flex; align-items: center; justify-content: center; gap: 20px; }
.fixed-bottom-bar .phone { font-size: 20px; font-weight: 700; color: var(--primary); }
.fixed-bottom-bar .phone small { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.fixed-bottom-bar .btn-bar { padding: 10px 28px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all .2s; }
.fixed-bottom-bar .btn-chat { background: var(--accent); color: #fff; }
.fixed-bottom-bar .btn-chat:hover { background: #d49520; }
.fixed-bottom-bar .btn-book { background: var(--primary); color: #fff; }
.fixed-bottom-bar .btn-book:hover { background: var(--primary-dark); }

/* ========== PAGINATION ========== */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; color: var(--text-light); }
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ========== BREADCRUMB ========== */
.breadcrumb { padding: 14px 0; font-size: 13px; color: var(--text-muted); background: var(--bg); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
    .area-cards { grid-template-columns: repeat(3,1fr); }
    .property-grid { grid-template-columns: repeat(2,1fr); }
    .listing-layout { grid-template-columns: 1fr; }
    .listing-grid { grid-template-columns: repeat(2,1fr); }
    .services-grid, .area-advantages, .advantages-grid { grid-template-columns: repeat(2,1fr); }
    .stats-grid { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(3,1fr); }
    .area-extra { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .site-nav { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 12px; box-shadow: var(--shadow); }
    .site-nav.open { display: flex; }
    .site-nav-toggle { display: block; }
    .site-banner { height: 400px; }
    .site-banner h1 { font-size: 28px; }
    .site-banner .container { padding-top: 60px; }
    .banner-search .search-row { flex-wrap: wrap; }
    .banner-search select { flex: 1 1 100%; }
    .area-cards { grid-template-columns: repeat(2,1fr); }
    .property-grid { grid-template-columns: 1fr; }
    .listing-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .area-advantages, .advantages-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(3,1fr); }
    .stat-item .stat-num { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2,1fr); }
    .detail-gallery .gallery-main { height: 260px; }
    .detail-layout { grid-template-columns: 1fr !important; }
    .news-item-link { flex-direction: column; }
    .news-img { width: 100%; height: 180px; }
    .news-categories { gap: 8px; }
}

/* Spacer for fixed bottom bar */
.bottom-spacer { height: 70px; }

/* No-image placeholder */
.no-img { background: linear-gradient(135deg,#e9ecef,#dee2e6); display: flex; align-items: center; justify-content: center; color: #adb5bd; font-size: 13px; }

/* Project page */
.project-price-row { display: flex; gap: 16px; margin: 16px 0; }
.project-price-box { flex: 1; border: 1px solid #f0f0f0; border-radius: 8px; padding: 12px 16px; }
.project-price-label { font-size: 13px; color: #999; margin-right: 8px; }
.project-price-val { font-size: 20px; font-weight: 700; color: #CA2B2F; }
.project-price-val small { font-size: 13px; font-weight: 400; color: #999; }
