
/* GLOBAL */

:root {
    --main-color: #B8935A;
    --main-light-color: #f7f0e6;
    --main-text-color: #fff;
    --main-bg-color: #faf8f5;
    --second-color: #6b6b6b;
    --second-light-color: #f9f7f4;
    --second-text-color: #fff;
    --third-color: #B8935A;
    --third-light-color: #f7f0e6;
    --third-text-color: #fff;
    --dark-color: #1a1a1a;
    --text-muted: #888;
    --border-color: #ece8e1;
    --white: #ffffff;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    background: #fff;
    font-family: "Lato", sans-serif;
    color: #2a2a2a;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #1a1a1a;
    font-family: "Cormorant Garamond", serif;
    
}

.sp-font {
    font-family: "Cormorant Garamond", serif;
}

.container {
    max-width: 1300px;
}

.ng-shadow {
    box-shadow: rgba(99, 99, 99, 0.15) 0px 2px 8px 0px;
}

.ng-shadow-hover:hover {
    box-shadow: rgba(99, 99, 99, 0.15) 0px 2px 8px 5px;
}

@media (max-width: 991.98px) {
    .container {
        padding-left: 25px;
        padding-right: 25px;
    }
}

.fu-a {
    animation: fadeUp 1s linear;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.5);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (min-width: 992px) {
    .t-up {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .t-up:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    }
}

.t-color {
    color: var(--main-color);
}

.t-bg {
    background: var(--main-color);
}

/* global social links */

.social-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    text-decoration: none;
    color: var(--main-text-color);
    background: var(--main-color);
    transition: transform 0.1s ease-in;
}

.social-links a:hover {
    transform: scale(1.05);
}

.social-links a.facebook { background: #1877f2; color: #fff; }
.social-links a.youtube { background: #ff0000; color: #fff; }
.social-links a.instagram { background: #c32aa3; color: #fff; }
.social-links a.linkedin { background: #0a66c2; color: #fff; }
.social-links a.tiktok { background: #010101; color: #fff; }
.social-links a.x-twitter { background: #000; color: #fff; }

/* global section eyebrow / label */

.section-label,
.section-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 12px;
}

.section-eyebrow.light {
    color: rgba(184, 147, 90, 0.85);
}

/* global section title */

.section-title {
    
    font-size: 46px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0 0 24px;
}

.section-title.light {
    color: #fff;
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 32px;
    }
}

/* global heading box */

.heading-box .heading {
    
    font-size: 48px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.2;
}

.heading-box .slim {
    font-weight: 300;
    font-style: italic;
}

.heading-box .heading-text {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    max-width: 560px;
    margin: auto;
    line-height: 1.75;
}

.heading-box .specer {
    color: var(--main-color);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
    
}

.heading-box .specer::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--main-color);
    vertical-align: middle;
    margin-right: 8px;
}

.heading-box .specer::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--main-color);
    vertical-align: middle;
    margin-left: 8px;
}

.heading-box .page-heading {
    
    font-size: 58px;
    font-weight: 600;
    letter-spacing: 0.01em;
}

@media (max-width: 991.98px) {
    .heading-box .page-heading {
        font-size: 38px;
    }
}

@media (max-width: 767.98px) {
    .heading-box {
        padding-left: 0;
        padding-right: 0;
    }

    .heading-box .heading {
        font-size: 30px;
    }

    .heading-box .heading-text {
        font-size: 15px;
    }

    .heading-box .specer {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

/* global btns */

.t-btn {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 1.1em 2.2em;
    border: none;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    opacity: 1;
    border-radius: 0;
    transition: all 0.3s ease;
    transform-origin: center;
    position: relative;
    z-index: 2;
}

.t-btn.big {
    font-size: 18px;
}

.t-btn.small {
    font-size: 13px;
    padding: 0.8em 1.3em;
}

.t-btn.theme {
    border-color: var(--main-color);
    background: var(--main-color);
    color: var(--main-text-color);
    border-radius: 0;
}

.t-btn.theme2 {
    border-color: var(--second-color);
    background: var(--second-color);
    color: var(--second-text-color);
    border-radius: 0;
}

.t-btn.theme3 {
    border-color: var(--third-color);
    background: var(--third-color);
    color: var(--third-text-color);
    border-radius: 0;
}

.t-btn.white {
    background: #fff;
    color: var(--main-color);
}

.t-btn.dark {
    background: #333;
    color: #fff;
}

@media (min-width: 992px) {
    .t-btn:hover {
        opacity: 0.8;
    }
}

@media (max-width: 767.98px) {
    .t-btn {
        font-size: 15px;
    }
}

/* global btn variants */

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--main-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 32px;
    text-decoration: none;
    transition: opacity 0.25s ease;
}

.btn-gold:hover {
    opacity: 0.82;
    color: #fff;
}

.btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 30px;
    border: 1px solid rgba(26, 26, 26, 0.3);
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-outline-dark:hover {
    border-color: #1a1a1a;
    background: #1a1a1a;
    color: #fff;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.25s ease;
    flex-shrink: 0;
}

.btn-dark:hover {
    opacity: 0.8;
    color: #fff;
}

@media (max-width: 767.98px) {
    .btn-dark {
        width: 100%;
        justify-content: center;
    }
}

.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-color);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.btn-text-link:hover {
    gap: 10px;
    color: var(--main-color);
}

/* global form focus */

.form-control:focus,
.form-select:focus {
    border-color: var(--main-color) !important;
    box-shadow: 0 0 0 3px rgba(184, 147, 90, 0.12) !important;
    outline: none;
}

/* global pagination */

.pagination .page-link {
    border-color: var(--border-color);
    color: #555;
    border-radius: 1px !important;
    font-size: 13px;
}

.pagination .page-item.active .page-link,
.pagination .active .page-link {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.pagination .page-link:hover,
.pagination .page-link:focus {
    color: #000;
    box-shadow: none;
}

/* global page banner (breadcrumb) */

.page-banner {
    padding: 12px 0;
    display: flex;
    position: relative;
    z-index: 1;
    background: var(--main-bg-color);
    border-bottom: 1px solid var(--border-color);
    align-items: center;
    justify-content: center;
}

.page-banner nav.path ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    list-style: none;
    font-size: 12px;
    margin-bottom: 0;
    column-gap: 10px;
    row-gap: 5px;
    align-items: center;
    color: #000;
}

.page-banner nav.path ul li {
    display: inline-flex;
    align-items: center;
}

.page-banner nav.path ul li a {
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    line-height: 1;
    color: #555;
    font-weight: 400;
    padding-right: 12px;
    font-size: 11px;
    letter-spacing: 0.5px;
}

.page-banner nav.path ul li a:hover {
    color: var(--main-color);
}

.page-banner nav.path ul li .final-path {
    font-weight: 600;
}

.page-banner nav.path ul li a::after {
    content: '';
    position: absolute;
    right: 0;
    top: calc(50% - 3px);
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: 1px solid #7a7a7a;
    border-right: 1px solid #7a7a7a;
}

@media (max-width: 767.98px) {
    .page-banner nav.path ul {
        font-size: 10px;
    }
}

/* global to top btn */

#myBtn {
    display: flex;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: var(--main-color);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(184, 147, 90, 0.35);
    transition: opacity 0.3s ease;
}

#myBtn:hover {
    opacity: 0.85;
}

/* global image placeholder */

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 100%;
    background: #d8cfc4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.img-placeholder.dark {
    background: #3a3530;
}

.img-placeholder span {
    font-size: 11px;
    font-weight: 600;
    
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    text-align: center;
    line-height: 1.7;
}

.img-placeholder.dark span {
    color: rgba(255, 255, 255, 0.25);
}

/* global filter bar */

.filter-bar .badge {
    background: #fff !important;
    border: 1px solid #f1f1f1 !important;
    color: #000 !important;
    font-weight: 500 !important;
}

.filter-bar .form-select,
.filter-bar .form-control {
    border-color: var(--border-color);
    border-radius: 1px;
    height: 40px;
    font-size: 13px;
    
}

.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
    border-color: var(--main-color) !important;
    box-shadow: 0 0 0 2px rgba(184, 147, 90, 0.12) !important;
}



/* global portfolio item */

.portfolio-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

@media (min-width: 992px) {
    .portfolio-item:hover {
        box-shadow: 0 12px 40px rgba(0,0,0,0.1);
        transform: translateY(-4px);
    }
}

.portfolio-item .img-box {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: block;
}

.portfolio-item .img-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.portfolio-item .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

@media (min-width: 992px) {
    .portfolio-item:hover .img-box img {
        transform: scale(1.04);
    }
}

.portfolio-item .badge-type {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: var(--main-color);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 5px 11px;
    border-radius: 1px;
}

.portfolio-item .status-ribbon {
    position: absolute;
    inset: 0;
    z-index: 8;
    background: rgba(20, 20, 20, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item .ribbon-stamp {
    border: 2px solid var(--main-color);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 22px;
    transform: rotate(-18deg);
    white-space: nowrap;
    border-radius: 2px;
    box-shadow: 0 0 0 4px rgba(184, 147, 90, 0.18);
}

.portfolio-item .info-box {
    padding: 16px 18px 20px;
    border-top: 1px solid var(--border-color);
}

.portfolio-item .price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.portfolio-item .price {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
}

.portfolio-item .price-note {
    font-size: 12px;
    font-weight: 400;
    color: #aaa;
}

.portfolio-item .title {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.45;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.portfolio-item .title:hover {
    color: var(--main-color);
}

.portfolio-item .location-strip {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #999;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.portfolio-item .location-strip svg {
    color: var(--main-color);
    flex-shrink: 0;
}

.portfolio-item .meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    padding-top: 10px;
    border-top: 1px solid #f0ece6;
}

.portfolio-item .meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #777;
    white-space: nowrap;
}

.portfolio-item .meta-item svg {
    color: var(--main-color);
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .portfolio-item .price {
        font-size: 19px;
    }

    .portfolio-item .title {
        font-size: 13px;
    }

    .portfolio-item .ribbon-stamp {
        font-size: 10px;
        padding: 8px 16px;
    }
}









/* global agent detail */

.agent-detail-item {
    background: #1a1a1a;
    background-image: none;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: sticky;
    left: 0;
    top: 15px;
}

.agent-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.agent-detail-item .agent img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    margin-bottom: 15px;
    border: 3px solid rgba(184, 147, 90, 0.3);
}

.agent-detail-item .agent p {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.5;
    font-size: 14px;
}

.agent-detail-item h5 {
    
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
}

/* global not found page */

.not-found-page {
    background: rgba(0, 0, 0, 0.02);
}

.not-found-page h1.head {
    font-size: 175px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -18px;
    color: var(--second-color);
    text-shadow: -4px 0 #fff;
    margin-left: -18px;
}

.not-found-page h1.head .first { z-index: 1; position: relative; }
.not-found-page h1.head .second { z-index: 2; position: relative; }
.not-found-page h1.head .third { z-index: 3; position: relative; }

.not-found-page p {
    text-align: center;
    position: relative;
    top: 40px;
    color: #000;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .not-found-page h1.head {
        font-size: 105px;
        letter-spacing: -10px;
        margin-left: -10px;
    }

    .not-found-page p {
        top: 20px;
    }
}


/* gdpr page */


.gdpr-page .content {
    width: 860px;
    max-width: 100%;
    margin: auto;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 15px;
}

.gdpr-page .content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.gdpr-page .content h3 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--main-color);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
}

.gdpr-page .content p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.gdpr-page .content ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 1rem;
}

.gdpr-page .content ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    padding-left: 18px;
    position: relative;
    margin-bottom: 10px;
}

.gdpr-page .content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 1px;
    background: var(--main-color);
}

.gdpr-page .content a {
    color: var(--main-color);
    text-decoration-color: rgba(184, 147, 90, 0.4);
}

.gdpr-page .content strong {
    color: #1a1a1a;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .gdpr-page .content {
        padding: 20px 16px;
        font-size: 14px;
    }

    .gdpr-page .content h2 {
        font-size: 18px;
    }

    .gdpr-page .content h3 {
        font-size: 12px;
    }

    .gdpr-page .content p,
    .gdpr-page .content ul li {
        font-size: 14px;
    }
}



/* global clean page (gdpr, cookies, atd) */

.clean-page {
    background: #fff;
}

.clean-page .content {
    width: 1080px;
    max-width: 100%;
    padding: 35px;
    margin: auto;
    border-radius: 15px;
    background: #f9f9f9;
}

.clean-page a {
    color: var(--main-color);
    text-decoration-color: rgba(184, 147, 90, 0.4);
}

.clean-page h2 { font-size: 28px; font-weight: bold; margin-top: 1.5em; }
.clean-page h3 { font-size: 24px; font-weight: bold; margin-top: 1.2em; }
.clean-page h4 { font-size: 20px; font-weight: 600; margin-top: 1em; }
.clean-page h5 { font-size: 18px; font-weight: 600; margin-top: 0.8em; }
.clean-page h6 { font-size: 16px; font-weight: 500; margin-top: 0.6em; }

.clean-page .gallery-box {
    margin-top: 25px;
}

.clean-page .gallery-box .gallery-imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.clean-page .gallery-box .heading {
    text-align: center;
    margin-bottom: 15px;
    color: var(--main-color);
    font-weight: 700;
}

.clean-page .gallery-box .gallery-imgs a {
    width: calc(100% / 7 - 10px);
    display: block;
}

.clean-page .gallery-box .gallery-imgs a img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .clean-page {
        font-size: 14px;
    }

    .clean-page .content {
        padding: 10px;
    }

    .clean-page h2 { font-size: 20px; }
    .clean-page h3 { font-size: 20px; }
    .clean-page h4 { font-size: 18px; }
    .clean-page h5 { font-size: 17px; }
    .clean-page h6 { font-size: 15px; }
}

/* global above foot */

.above-foot {
    padding-bottom: 140px;
    padding-top: 100px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.above-foot::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.85;
}

.above-foot .heading {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1px;
    margin: auto;
    margin-bottom: 20px;
    color: #fff;
}

.above-foot .heading-text {
    color: rgba(255, 255, 255, 0.95);
    max-width: 850px;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
}

@media (max-width: 991.98px) {
    .above-foot {
        background-attachment: unset;
        padding-bottom: 70px;
        padding-top: 50px;
    }

    .above-foot .heading {
        font-size: 24px;
    }

    .above-foot .heading-text {
        font-size: 15px;
    }
}

/* global faq item */

.faq-page {
    background: #fff;
}

.faq-page .heading-box {
    margin-bottom: 100px !important;
}

.faq-page img {
    border-radius: 10px;
}

.faq-item {
    position: relative;
    border-radius: 0;
}

.faq-item .faq-question {
    background: #F7F9FC;
    padding: 25px;
    font-weight: 600;
    border-radius: 6px;
    box-shadow: var(--box-shadow);
    color: #000;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.faq-item.active .faq-question {
    background: var(--main-light-color);
}

.faq-item .roller {
    position: absolute;
    top: -15px;
    right: 25px;
    display: inline-flex;
    height: 32px;
    border-radius: 0;
    width: 32px;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    background: #000;
    color: #fff;
}

.faq-item .roller svg {
    transform: rotate(0);
    transition: transform 0.2s ease-in;
}

.faq-item.active .roller {
    background: #000;
}

.faq-item.active svg {
    transform: rotate(180deg);
    transition: transform 0.2s ease-in;
}

.faq-item .faq-answer {
    display: none;
    background: transparent !important;
    padding: 15px;
    font-size: 16px;
    font-weight: 300;
    color: #373737;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

@media (max-width: 767.98px) {
    .faq-item .faq-question {
        font-size: 13px;
    }

    .faq-item .faq-answer {
        font-size: 12px;
    }

    .faq-item .roller {
        top: -8px;
        right: 15px;
        height: 25px;
        width: 25px;
        font-size: 14px;
    }
}

/* global type item */

.type-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.type-item img {
    transform: scale(1) rotate(0);
    transition: transform 0.3s ease-in;
}

.type-item:hover img {
    transform: scale(1.05) rotate(2deg);
}

.type-item .title {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 50%;
    z-index: 2;
    padding: 10px 22px;
    background: #fff;
    color: var(--second-color);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transform: translate(-50%, 0);
    max-width: 100%;
}

.type-item .img-box {
    overflow: hidden;
    height: 350px;
    display: flex;
}

.type-item .img-box img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.type-item .img-box::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    transition: background 0.3s ease-in;
}

.type-item:hover .img-box::after {
    background: rgba(0, 0, 0, 0);
}

@media (max-width: 767.98px) {
    .type-item .title {
        padding: 8px 15px;
        font-size: 14px;
    }

    .type-item .img-box {
        height: 250px;
    }
}

/* global hero box */

.hero-box {
    position: relative;
    z-index: 5;
}


/* main header */

.main-header {
    position: relative;
    display: block;
    background: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
    width: 100% !important;
    max-width: 100% !important;
}

.main-header .main-bar {
    padding-top: 12px;
    padding-bottom: 12px;
}

.main-header .logo img {
    width: 80px;
    transition: width 0.3s ease;
}

.main-header .container {
    border-radius: 8px;
}

/*.main-header .main-menu {*/
/*    width: 100%;*/
/*}*/

.main-header .main-menu .menu-list {
    display: flex;
    padding-left: 0;
    align-items: center;
    list-style: none;
    margin-bottom: 0;
}

.main-header .main-menu .menu-list .menu-link,
.main-header .main-menu .menu-list .dropdown-toggle.menu-link {
    padding: 10px 14px;
    text-decoration: none;
    display: inline-block;
    background: transparent;
    border-radius: 0;
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2a2a2a;
    position: relative;
    transition: color 0.25s ease;
    
}

.main-header .main-menu .menu-list .menu-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--main-color);
    transform: scaleX(0);
    transition: transform 0.25s ease;
    transform-origin: left;
}

@media (min-width: 1200px) {
    .main-header .main-menu .menu-list .menu-link:hover::after,
    .main-header .main-menu .menu-list .menu-link.active::after {
        transform: scaleX(1);
    }
}



.main-header .main-menu .menu-list .menu-link:hover,
.main-header .main-menu .menu-list .menu-link:focus,
body .main-header .menu-link:hover {
    color: var(--main-color) !important;
}

.main-header .main-menu .menu-list .menu-link.active {
    color: var(--main-color);
}

.main-header .dropdown-menu {
    border-color: #f1f1f1;
}

.main-header .dropdown-menu .dropdown-item {
    font-size: 14px;
}

.main-header .dropdown-menu .dropdown-item:hover,
.main-header .dropdown-menu .dropdown-item:focus {
    font-size: 14px;
    color: var(--main-text-color);
    background: var(--main-color);
}

.main-header .js-menu-open {
    display: inline-flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    text-decoration: none;
    color: #000;
}

.main-header .js-menu-open:hover,
.main-header.is-sticky .js-menu-open {
    color: var(--main-color);
}

.main-header .js-menu .contact-info {
    flex-wrap: wrap;
    gap: 15px;
    display: flex;
}

.main-header .js-menu .contact-info a {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 15px;
    font-weight: 400;
    color: #444;
    text-decoration: none;
}

.main-header .js-menu .contact-info i {
    color: var(--main-color);
}

.main-header .mobile-head .logo img {
    height: auto !important;
}

.main-header.is-sticky {
    box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.05);
}

.main-header.is-sticky .logo img {
    width: 65px;
}

.main-header.is-sticky .main-menu .menu-list .menu-link {
    font-size: 12px;
}

body.home:not(.not-top) .main-header .second {
    display: block;
}

body.home:not(.not-top) .main-header .first {
    display: none;
}

body:not(.not-top) .main-header .logo .second {
    display: none;
}

body.not-top .main-header .logo .first {
    display: none;
}

body.not-top .logo .first {
    display: block !important;
}

body.not-top .logo .second {
    display: none !important;
}

body.home.not-top .main-header {
    background: #fff !important;
}

body:not(.home) .main-header {
    background: #fff !important;
}

.not-top .main-header {
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

body.home {
    padding-top: 0;
}

/* home transparent header */

@media (min-width: 1200px) {
    body.home:not(.not-top) .menu-link {
        color: #2a2a2a;
    }

    body.home:not(.not-top) .menu-link:hover {
        color: var(--main-color);
    }
}

body.home:not(.not-top) .js-menu-open {
    color: #111;
}

body.home:not(.not-top) .menu-link.active::after {
    background: rgba(255, 255, 255, 0.7);
}

/* nav phone */

.nav-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
    
    letter-spacing: 0.5px;
    color: #1a1a1a;
    text-decoration: none;
    padding: 8px 18px;
    border: 1px solid var(--border-color);
    transition: all 0.25s ease;
}

.nav-phone-link svg {
    color: var(--main-color);
}

.nav-phone-link:hover {
    background: var(--main-color);
    border-color: var(--main-color);
    color: #fff;
}

.nav-phone-link:hover svg {
    color: #fff;
}

/* responsive header */

@media (max-width: 1400px) {
    .main-header .main-menu .menu-list .menu-link,
    .main-header .main-menu .menu-list .dropdown-toggle.menu-link {
        padding: 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 1199.98px) {
    body.menu-opened .main-header .js-menu {
        display: block !important;
        z-index: 99999;
        background: #fff;
        width: 100%;
        height: 100lvh;
        overflow-y: auto;
        position: fixed;
        top: 0;
        left: 0;
    }

    body.menu-opened .mobile-head {
        padding: 8px 0;
        position: relative;
    }

    body.menu-opened .mobile-head .js-menu-close {
        font-size: 28px;
        display: inline-flex;
        width: 45px;
        height: 45px;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        color: #ccc;
        white-space: nowrap;
    }

    .main-header .container {
        border-radius: 0 !important;
    }

    body.menu-opened .js-menu .menu-list {
        flex-wrap: wrap;
        flex-direction: column;
    }

    body.menu-opened .main-header .js-menu .menu-item {
        text-align: center;
        width: 100%;
    }

    body.menu-opened .main-header .js-menu .menu-item .t-btn {
        margin-bottom: 15px;
        margin-top: 15px;
    }

    body.menu-opened .main-header .js-menu .menu-item .menu-link {
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
        font-size: 16px;
        padding: 17px 0;
    }

    body.menu-opened .js-menu .dropdown-menu {
        position: static !important;
        transform: unset !important;
        background: var(--main-bg-color);
        border: none;
    }

    body.menu-opened {
        height: 100vh !important;
        overflow: hidden;
    }
}

@media (max-width: 767.98px) {
    .main-header .logo img {
        max-width: 60px;
    }

    .main-header.is-sticky .logo img {
        width: 100px;
        transition: all 0.2s ease-in;
    }

    .main-header .main-bar {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}


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

.main-footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    font-size: 14px;
    position: relative;
}

.main-footer .main-bar {
    padding: 50px 0;
}

.main-footer .footheading {
    
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 28px;
    padding-bottom: 14px;
    position: relative;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-footer .footheading::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--main-color);
    position: absolute;
    bottom: -1px;
    left: 0;
}

.main-footer .main-bar a {
    color: #fff;
    font-weight: 400;
    text-decoration: none;
}

.main-footer a:hover {
    color: var(--main-color);
}

.main-footer ul {
    padding-left: 0;
    list-style: none;
}

.main-footer ul li {
    margin-bottom: 8px;
}

.main-footer .footer-logo {
    width: 70px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    display: block;
    margin-bottom: 20px;
}

.main-footer .footer-about {
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.main-footer .soc-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.main-footer .soc-box a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 147, 90, 0.15);
    border: 1px solid rgba(184, 147, 90, 0.3);
    transition: background 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.main-footer .soc-box a svg {
    width: 16px;
    height: 16px;
}

.main-footer .soc-box a:hover {
    background: var(--main-color);
}

.main-footer .contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.main-footer .contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.main-footer .contact-list-item svg {
    color: var(--main-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.main-footer .contact-list-item a {
    color: rgba(255, 255, 255, 0.85);
}

.main-footer .contact-list-item a:hover {
    color: var(--main-color);
}

.main-footer .opening-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    display: block;
    margin-bottom: 6px;
    margin-top: 16px;
}

.main-footer .copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 12px;
}

.main-footer .copyright .container {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.main-footer .copyright a {
    font-weight: 500;
    font-size: 12px;
    color: #a9acb3;
    text-decoration: none;
}


/* =============================================
   CTA SEKCIA
   ============================================= */

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 15, 0.80);
    z-index: 1;
}

.cta-inner {
    position: relative;
    z-index: 2;
}

.cta-info-col {
    padding: 70px 50px 70px 0;
}

@media (max-width: 991.98px) {
    .cta-info-col {
        padding: 50px 0 30px;
    }
}

.cta-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 16px;
}

.cta-heading {
    
    font-size: 42px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
}

@media (max-width: 767.98px) {
    .cta-heading {
        font-size: 30px;
    }
}

.cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 380px;
}

.cta-contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.cta-contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.cta-contact-row:hover {
    opacity: 0.8;
}

.cta-icon-wrap {
    width: 44px;
    height: 44px;
    background: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.cta-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cta-contact-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    
}

.cta-contact-value {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    
}

.cta-hours {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-hours-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    
    margin-bottom: 10px;
}

.cta-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.cta-hours-time {
    font-weight: 600;
    color: #fff;
}

.cta-form-col {
    padding: 70px 0 70px 60px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991.98px) {
    .cta-form-col {
        padding: 30px 0 50px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

.cta-form-title {
    
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
}

.cta-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 14px 18px;
    font-size: 14px;
    
    color: #fff;
    outline: none;
    transition: border-color 0.25s ease, background 0.25s ease;
    display: block;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 13px;
}

.cta-input:focus {
    border-color: var(--main-color);
    background: rgba(255, 255, 255, 0.09);
}

.cta-textarea {
    resize: none;
    min-height: 130px;
}

.cta-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 15px 32px;
    font-size: 11px;
    font-weight: 700;
    
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.25s ease;
    width: 100%;
    justify-content: center;
}

.cta-submit:hover {
    opacity: 0.85;
}

/* contact sec */

.contact-sec .contact-content {
    padding: 70px 45px;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.contact-sec .contact-content::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(20, 20, 20, 0.80);
    z-index: -1;
}

.contact-sec .info-box {
    color: #cbcfd6;
}

.contact-sec .heading {
    color: #fff;
}

.contact-sec .heading-text {
    margin-left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.contact-sec .specer {
    color: var(--main-color);
}

.contact-sec .form-box {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    padding-bottom: 80px;
    height: 100%;
}

.contact-sec .form-box label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
    color: #fff;
}

.contact-sec .form-control,
.contact-sec .form-select {
    border-radius: 0;
    font-size: 14px;
}

.contact-sec .form-control:not(textarea) {
    height: 44px;
    font-size: 16px;
}

.contact-sec .form-control::placeholder {
    font-size: 14px;
    font-weight: 500;
}

.contact-sec .form-control:focus,
.contact-sec .form-select:focus {
    box-shadow: none;
    outline: none;
    border-color: #ccc;
}

.contact-sec .contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-sec .contact-item .icon-box {
    width: 42px;
    height: 42px;
    background: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 0;
}

.contact-sec .contact-item .info-box {
    flex: 1;
}

.contact-sec .contact-item .info-box .title {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-sec .contact-item .value {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.contact-sec .opening-hours {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-sec .opening-hours .main-title {
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    display: block;
    margin-bottom: 15px;
}

.contact-sec .opening-hours .title {
    display: block;
    margin-bottom: 4px;
}

.contact-sec .opening-hours .value {
    display: block;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.contact-sec .opening-hours .value.em {
    color: var(--third-color);
}

@media (min-width: 992px) {
    .contact-sec .info-box {
        padding-right: 30px;
    }
}

@media (max-width: 767.98px) {
    .contact-sec .contact-item .value {
        font-size: 14px;
    }

    .contact-sec .contact-item .info-box .title {
        font-size: 15px;
    }

    .contact-sec .opening-hours .title {
        font-size: 14px;
    }

    .contact-sec .opening-hours .value {
        font-size: 14px;
    }

    .contact-sec .opening-hours .main-title {
        font-size: 16px;
    }
}


/* home  page */

.home-page .hero-split {
    display: flex;
    align-items: center;
    padding-top: 70px;
    padding-bottom: 70px;
}

@media (max-width: 991.98px) {
    .home-page .hero-split {
        flex-direction: column;
        min-height: auto;
    }
}

.home-page .hero-split-left {
    position: relative;
    width: 55%;
    flex-shrink: 0;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .home-page .hero-split-left {
        width: 100%;
        height: 55vw;
        min-height: 280px;
        max-height: 520px;
    }
}

.home-page .hero-split-left .img-placeholder {
    position: absolute;
    inset: 0;
    height: 100%;
}

@media (max-width: 991.98px) {
    .home-page .hero-split-left .img-placeholder {
        height: 100%;
        min-height: 280px;
    }
}

.home-page .hero-split-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.home-page  .hero-split-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.04) 100%);
}

.home-page .hero-split-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 70px;
    background: #faf8f5;
}

@media (max-width: 1199.98px) {
    .home-page .hero-split-right {
        padding: 60px 40px;
    }
}

@media (max-width: 991.98px) {
    .home-page .hero-split-right {
        padding: 50px 24px;
        justify-content: center;
        text-align: center;
    }
}

.home-page .hero-split-content {
    max-width: 480px;
}

@media (max-width: 991.98px) {
    .home-page .hero-split-content {
        max-width: 100%;
    }
}

.home-page  .hero-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.home-page .hero-title {
    
    font-size: 64px;
    font-weight: 600;
    line-height: 1.08;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.home-page  .hero-title em {
    font-style: italic;
    color: var(--main-color);
}

@media (max-width: 1199.98px) {
    .home-page  .hero-title {
        font-size: 50px;
    }
}

@media (max-width: 767.98px) {
    .home-page  .hero-title {
        font-size: 40px;
    }
}




.home-page  .hero-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 400px;
}

@media (max-width: 991.98px) {
    .home-page  .hero-desc {
        max-width: 100%;
    }
}

.home-page .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

@media (max-width: 991.98px) {
    .home-page .hero-actions {
        justify-content: center;
    }
}

.home-page .hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 991.98px) {
    .home-page .hero-stats {
        justify-content: center;
    }
}

.home-page .hero-stat .hero-num {
    display: block;
    
    font-size: 42px !important;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.home-page .hero-stat .hero-lab {
    font-size: 11px;
    font-weight: 600;
    
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #999;
    margin-top: 4px;
    display: block;
}

.home-page .hero-stat-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

.home-page .listings-section {
    padding: 90px 0;
    background: #fff;
}

.home-page .listings-header {
    margin-bottom: 50px;
}

.home-page .listings-header-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.home-page .listings-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.home-page .listings-grid .portfolio-item {
    width: calc(33.333% - 19px);
}

@media (max-width: 991.98px) {
    .home-page .listings-grid .portfolio-item {
        width: calc(50% - 14px);
    }
}

@media (max-width: 575.98px) {
    .home-page .listings-grid .portfolio-item {
        width: 100%;
    }
}


.home-page .services-dark {
    background: #1a1a1a;
    padding: 90px 0;
}

.home-page .services-dark-header {
    margin-bottom: 56px;
}

.home-page .services-dark-grid {
    display: flex;
    gap: 2px;
}

@media (max-width: 767.98px) {
    .home-page .services-dark-grid {
        flex-direction: column;
        gap: 16px;
    }
}

.home-page .service-card {
    flex: 1;
    background: #242424;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: background 0.3s ease;
}

.home-page .service-card:hover {
    background: #2c2c2c;
}

.home-page .service-card-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.home-page .service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.home-page .service-card-body {
    padding: 32px 28px 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.home-page .service-card-number {
    
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--main-color);
    margin-bottom: 14px;
    display: block;
}

.home-page .service-card-title {
    
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.home-page .service-card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 24px;
}

.home-page .service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-color);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.home-page .service-card-link:hover {
    gap: 10px;
    color: var(--main-color);
}

.home-page .photo-strip {
    display: flex;
    height: 280px;
    overflow: hidden;
}

.home-page .photo-strip img {
    flex: 1;
    object-fit: cover;
    display: block;
    filter: brightness(0.88);
    transition: filter 0.4s ease, flex 0.4s ease;
}

.home-page .photo-strip img:hover {
    filter: brightness(1);
    flex: 2;
}

.home-page .photo-strip .img-placeholder {
    height: 280px;
    min-height: 280px;
}

@media (max-width: 767.98px) {
    .home-page .photo-strip {
        height: 180px;
    }

    .home-page .photo-strip .img-placeholder {
        height: 180px;
        min-height: 180px;
    }

    .home-page .photo-strip img:nth-child(3),
    .home-page .photo-strip img:nth-child(4),
    .home-page .photo-strip .img-placeholder:nth-child(3),
    .home-page .photo-strip .img-placeholder:nth-child(4) {
        display: none;
    }
}

.home-page .reviews-section {
    padding: 90px 0;
    background: var(--main-bg-color);
}

.home-page .reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.home-page .review-card {
    background: #fff;
    padding: 36px 32px;
    flex: 1;
    min-width: 260px;
    max-width: calc(33.333% - 16px);
    border-bottom: 3px solid var(--main-color);
    display: flex;
    flex-direction: column;
}

@media (max-width: 991.98px) {
    .home-page .review-card {
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 575.98px) {
    .home-page .review-card {
        max-width: 100%;
    }
}

.home-page .review-quote {
    
    font-size: 64px;
    line-height: 0.6;
    color: var(--main-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

.home-page .review-text {
    font-size: 15px;
    color: #444;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 28px;
}

.home-page .home-page .review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-page .home-page .review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--main-color);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-page .home-page .review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-page .review-avatar span {
    
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.home-page .review-author-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    
    color: #1a1a1a;
}

.home-page .review-author-info span {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

.gold-banner {
    background: var(--main-color);
    padding: 60px 0;
}

.gold-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.gold-banner-text h2 {
    
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.2;
}

.gold-banner-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    max-width: 500px;
}

@media (max-width: 767.98px) {
    .gold-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .gold-banner-text h2 {
        font-size: 30px;
    }
}

.home-page .testimonials {
    padding: 80px 0;
    background: var(--main-bg-color);
}

.home-page .testimonials .lSSlideOuter .lSPager.lSpg > li:hover a,
.home-page .testimonials .lSSlideOuter .lSPager.lSpg > li.active a {
    background-color: var(--main-color);
}


.home-page .about {
    padding: 0;
}

.home-page .about .contenter {
    background: var(--main-bg-color);
    padding: 45px;
}

.home-page .about .img-box {
    position: relative;
    overflow: hidden;
    background: #e8e3da;
    min-height: 500px;
    height: 100%;
}

.home-page .about .img-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.home-page .about .about-split-badge {
    position: absolute;
    bottom: 36px;
    right: 10px;
    background: #fff;
    color: var(--main-color);
    padding: 22px 28px;
    text-align: center;
}

.home-page .about .about-split-badge strong {
    display: block;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.home-page .about .about-split-badge span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
    opacity: 0.85;
}



@media (max-width: 1199.98px) {


    .home-page .about  {
        background: var(--main-bg-color);
    }

}

@media (max-width: 991.98px) {
    .home-page .about .img-box {
        min-height: 70vw;
        max-height: 500px;
    }

    .home-page .about .contenter {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 0;
        padding-right: 0;
    }

}

.home-page .about .about-split-text {
    margin-bottom: 36px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
}

.home-page .about .about-split-text p + p {
    margin-top: 14px;
}


/* =============================================
   ABOUT PAGE
   ============================================= */

.about-page .about-hero {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.about-page .about-hero-photo {
    position: relative;
    flex: 0 0 42%;
    max-width: 42%;
}

.about-page .about-hero-photo .img-placeholder {
    height: 100%;
    min-height: 600px;
    border-radius: 0;
}

.about-page .about-hero-badge {
    position: absolute;
    bottom: 2.5rem;
    right: -1.5rem;
    background: var(--main-color);
    color: #fff;
    padding: 1.2rem 1.6rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    z-index: 2;
}

.about-page .about-hero-badge strong {
    display: block;
    
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.about-page .about-hero-badge span {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-page .about-hero-content {
    flex: 1;
    padding: 5rem 5rem 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-page .about-hero-title {
    
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.about-page .about-hero-title em {
    font-style: italic;
    color: var(--main-color);
}

.about-page .about-hero-lead {
    font-size: 1.18rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-page .about-hero-divider {
    width: 56px;
    height: 3px;
    background: var(--main-color);
    margin-bottom: 1.5rem;
}

.about-page .about-hero-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-page .about-values {
    padding: 30px 0;
    background: #fff;
}

.about-page .value-card {
    padding: 2.5rem 2rem;
    border: 1px solid #ede9e0;
    border-radius: 2px;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}

.about-page .value-card:hover {
    box-shadow: 0 8px 32px rgba(184, 147, 90, 0.13);
    transform: translateY(-4px);
}

.about-page .value-card-icon {
    width: 64px;
    height: 64px;
    background: #faf3e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--main-color);
}

.about-page .value-card h3 {
    
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.about-page .value-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.75;
    margin: 0;
}

.about-page .about-story {
    padding: 7rem 0;
    background: #1a1a1a;
    color: #ccc;
}

.about-page .about-story p {
    color: #bbb;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.about-page .about-story p strong {
    color: var(--main-color);
}

.about-page .about-story-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.about-page .about-stat-box {
    flex: 0 0 calc(50% - 0.75rem);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(184, 147, 90, 0.25);
    padding: 2rem 1.5rem;
    text-align: center;
}

.about-page .about-stat-box strong {
    display: block;
    
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.about-page .about-stat-box span {
    font-size: 0.8rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #999;
}

.about-page .about-cert {
    padding: 6rem 0;
}

.about-page .cert-card {
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.about-page .cert-card-img .img-placeholder {
    height: 260px;
    border-radius: 0;
}

.about-page .cert-card-body {
    padding: 2.5rem;
    position: relative;
}

.about-page .cert-card-number {
    
    font-size: 3.5rem;
    font-weight: 700;
    color: #ede9e0;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.about-page .cert-card-body h3 {
    
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.about-page .cert-card-body p {
    color: #666;
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.about-page .timeline-section {
    background: var(--main-bg-color);
}

.certificates .certificate-item {
    border: 1px solid var(--border-color);
    border-radius: 2px;
}

@media (max-width: 991px) {
    .about-page .about-hero {
        flex-direction: column;
    }

    .about-page .about-hero-photo {
        flex: none;
        max-width: 100%;
    }

    .about-page .about-hero-photo .img-placeholder {
        min-height: 360px;
    }

    .about-page .about-hero-badge {
        right: 1rem;
        bottom: 1rem;
    }

    .about-page .about-hero-content {
        padding: 0;
    }

    .about-page .about-stat-box {
        flex: 0 0 calc(50% - 0.75rem);
    }
}

@media (max-width: 575px) {
    .about-page .about-stat-box {
        flex: 0 0 100%;
    }
}


/* =============================================
   REVIEWS PAGE
   ============================================= */

.reviews-page .reviews-page-list {
    margin-bottom: 4rem;
}

.reviews-page .reviews-page-card {
    background: #fff;
    border: 1px solid #ede9e0;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.25s, transform 0.25s;
}

.reviews-page .reviews-page-card:hover {
    box-shadow: 0 8px 32px rgba(184, 147, 90, 0.12);
    transform: translateY(-3px);
}

.reviews-page .reviews-page-card-text {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.reviews-page .reviews-page-card-person {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border-top: 1px solid #ede9e0;
    padding-top: 1.2rem;
}

.reviews-page .reviews-page-card-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--main-color);
    color: #fff;
    
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-transform: uppercase;
}

.reviews-page .reviews-page-card-name {
    display: block;
    
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
}

.reviews-page .reviews-page-card-position {
    display: block;
    font-size: 0.8rem;
    color: #999;
    letter-spacing: 0.04em;
}

.reviews-page .reviews-page-photo-list {
    margin-bottom: 2rem;
}

.reviews-page .reviews-page-photo-card {
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: box-shadow 0.25s, transform 0.25s;
}

.reviews-page .reviews-page-photo-card:hover {
    box-shadow: 0 10px 36px rgba(184, 147, 90, 0.15);
    transform: translateY(-3px);
}

.reviews-page .reviews-page-photo-card-img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.reviews-page .reviews-page-photo-card-info {
    background: var(--main-bg-color);
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.65;
    margin: 0;
    border-top: 2px solid var(--main-color);
}




/*********** CONTACT PAGE ************/




.contact-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 2px;
}



.contact-sidebar {
    background: #1a1a1a;
    padding: 55px 40px;
    height: 100%;
}

.contact-sidebar .heading {
    color: #fff;
    font-size: 32px;
}

.contact-sidebar .specer {
    color: var(--main-color);
}

.contact-sidebar-block {
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-sidebar-block:last-child {
    border-bottom: none;
}

.contact-sidebar-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--main-color);
    
}

.contact-sidebar-value {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
    display: block;
}

.contact-sidebar-value-sm {
    font-size: 16px;
}

.contact-sidebar-value:hover {
    color: var(--main-color);
}

.contact-sidebar-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    
}

/* form */

.contact-form-area {
    padding: 55px 50px;
    background: var(--main-bg-color);
    height: 100%;
}

.contact-form-area .form-control {
    border-radius: 0;
    border-color: var(--border-color);
    font-size: 14px;
    
    padding: 12px 16px;
    height: 48px;
    background: #fff;
}

.contact-form-area textarea.form-control {
    height: auto;
    resize: none;
}

.contact-form-area .form-control::placeholder {
    color: #aaa;
    font-size: 13px;
}



.contact-page .soc-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-page .soc-box a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 147, 90, 0.15);
    border: 1px solid rgba(184, 147, 90, 0.3);
    transition: background 0.3s ease;
    text-decoration: none;
    color: #fff;
}

.contact-page .soc-box a svg {
    width: 16px;
    height: 16px;
}

.contact-page .soc-box a:hover {
    background: var(--main-color);
}


/* responsive */

@media (max-width: 1199.98px) {
    .contact-sidebar {
        padding: 45px 30px;
    }

    .contact-form-area {
        padding: 45px 35px;
    }
}

@media (max-width: 991.98px) {
    .contact-sidebar {
        padding: 40px 25px;
    }

    .contact-form-area {
        padding: 40px 25px;
    }
}

@media (max-width: 767.98px) {
    .contact-sidebar {
        padding: 35px 20px;
    }

    .contact-form-area {
        padding: 35px 20px;
    }

    .contact-sidebar-value {
        font-size: 18px;
    }

    .contact-sidebar-value-sm {
        font-size: 14px;
    }
}


/* category-page */


.category-page .heading-box {
    max-width: 500px;
}

.results-count {
    font-size: 13px;
    color: #888;
}

.results-count strong {
    color: #1a1a1a;
    font-weight: 700;
}

.category-sidebar .filter-bar {
    background: var(--main-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 2px;
    padding: 24px 20px;
    margin-bottom: 0;
}

.category-sidebar .filter-bar .row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-sidebar .filter-bar .row > * {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.category-sidebar .filter-bar .g-2 {
    gap: 8px !important;
}

.category-sidebar .filter-bar .form-select,
.category-sidebar .filter-bar .form-control {
    width: 100%;
    height: 40px;
    font-size: 13px;
    border-radius: 1px;
    border-color: var(--border-color);
}

.category-sidebar .filter-bar .form-select:focus,
.category-sidebar .filter-bar .form-control:focus {
    border-color: var(--main-color) !important;
    box-shadow: 0 0 0 2px rgba(184, 147, 90, 0.12) !important;
}

#active-badges .badge {
    font-size: 11px;
    font-weight: 500;
    padding: 5px 9px;
    border-radius: 1px;
    cursor: pointer;
    transition: opacity 0.15s;
}

#active-badges .badge:hover {
    opacity: 0.8;
}

#filter-loading {
    font-size: 12px;
    color: #aaa;
}

@media (max-width: 991.98px) {
    .category-sidebar .filter-bar .row {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .category-sidebar .filter-bar .row > * {
        width: auto !important;
        max-width: none !important;
        flex: 1 1 160px !important;
        padding-left: calc(var(--bs-gutter-x) * .5) !important;
        padding-right: calc(var(--bs-gutter-x) * .5) !important;
    }
}




/******** SERVICE PAGE *******/


.service-page {
    background: #fff;
}

.service-page .service-section {
    padding: 80px 0;
}

.service-page .service-section-alt {
    background: var(--main-bg-color);
}

.service-page .service-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.service-page .service-section .heading {
    font-size: 38px;
}

.service-page .service-section-img-box {
    position: relative;
}

.service-page .service-section-img-box .img-placeholder {
    aspect-ratio: 4/3;
    min-height: auto;
    border-radius: 2px;
}

.service-page .service-section-number {
    position: absolute;
    top: -28px;
    left: -16px;
    font-size: 100px;
    font-weight: 700;
    color: var(--main-color);
    opacity: 0.12;
    line-height: 1;
    z-index: 2;
    pointer-events: none;
}

.service-page .service-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.service-page .service-list li {
    font-size: 15px;
    color: #444;
    padding-left: 22px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-page .service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 1px;
    background: var(--main-color);
}

.service-page .service-cta-strip {
    background: #1a1a1a;
    padding: 70px 0;
}

@media (max-width: 767.98px) {
    .service-page .service-section {
        padding: 50px 0;
    }

    .service-page .service-section .heading {
        font-size: 28px;
    }

    .service-page .service-section-number {
        font-size: 70px;
        top: -20px;
        left: -8px;
    }

    .service-page .service-list li {
        font-size: 14px;
    }

    .service-page .service-cta-strip {
        padding: 50px 0;
        text-align: center;
    }

    .service-page .service-cta-strip .col-md-4 {
        text-align: center !important;
    }
}








/**** PROPERTY PAGE ******/


.property-page-2 {
    background: var(--white);
}

/* gallery */

.property-page-2 .pp2-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 170px;
    gap: 4px;
    overflow: hidden;
}

.property-page-2 .pp2-gallery-main {
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
}

.property-page-2 .pp2-gallery-thumb {
    position: relative;
    overflow: hidden;
}

.property-page-2 .pp2-gallery-main img,
.property-page-2 .pp2-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.property-page-2 .pp2-gallery-main:hover img,
.property-page-2 .pp2-gallery-thumb:hover img {
    transform: scale(1.03);
}

.property-page-2 .pp2-photo-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    background: #ceb04e;
    color: #fff;
    border: none;
    padding: 9px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s ease;
    z-index: 5;
}

.property-page-2 .pp2-photo-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
}

/* sold/reserved overlay */

.property-page-2 .pp2-sold-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.property-page-2 .pp2-sold-stamp {
    border: 2px solid var(--main-color);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 26px;
    transform: rotate(-18deg);
    border-radius: 2px;
    box-shadow: 0 0 0 4px rgba(184, 147, 90, 0.2);
}

@media (max-width: 767.98px) {
    .property-page-2 .pp2-gallery {
        grid-template-rows: 220px 110px;
    }
}

/* body layout */

.property-page-2 .pp2-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    padding: 48px 0 80px;
    align-items: start;
}

@media (max-width: 991.98px) {
    .property-page-2 .pp2-body {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 0 60px;
    }
}

/* main col */

.property-page-2 .pp2-eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--main-color);
    margin-bottom: 12px;
}

.property-page-2 .pp2-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 18px;
}

@media (max-width: 767.98px) {
    .property-page-2 .pp2-title {
        font-size: 26px;
    }
}

.property-page-2 .pp2-price {
    display: block;
    font-size: 46px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 1;
    margin-bottom: 28px;
    font-family: "Cormorant Garamond", serif;
}

@media (max-width: 767.98px) {
    .property-page-2 .pp2-price {
        font-size: 34px;
    }
}

/* tags */

.property-page-2 .pp2-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.property-page-2 .pp2-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--main-bg-color);
    border: 1px solid var(--border-color);
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    border-radius: 2px;
    letter-spacing: 0.3px;
}

.property-page-2 .pp2-tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--main-color);
    flex-shrink: 0;
}

/* action btns */

.property-page-2 .pp2-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.property-page-2 .pp2-btn-action {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: #1a1a1a;
    padding: 10px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.property-page-2 .pp2-btn-action:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
}

/* divider */

.property-page-2 .pp2-divider {
    height: 1px;
    background: var(--border-color);
    margin: 32px 0;
}

/* section label */

.property-page-2 .pp2-section-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: block;
}

/* description */

.property-page-2 .pp2-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.85;
}

/* table */

.property-page-2 .pp2-table {
    width: 100%;
    border-collapse: collapse;
}

.property-page-2 .pp2-table tr {
    border-bottom: 1px solid var(--border-color);
}

.property-page-2 .pp2-table tr:last-child {
    border-bottom: none;
}

.property-page-2 .pp2-table td {
    padding: 13px 0;
    font-size: 14px;
}

.property-page-2 .pp2-table td:first-child {
    color: #888;
    width: 45%;
}

.property-page-2 .pp2-table td:last-child {
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
}

/* features grid */

.property-page-2 .pp2-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.property-page-2 .pp2-feature-box {
    background: var(--main-bg-color);
    border: 1px solid var(--border-color);
    padding: 14px 16px;
    border-radius: 2px;
}

.property-page-2 .pp2-feature-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 5px;
    display: block;
}

.property-page-2 .pp2-feature-val {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

/* aside / agent card */

.property-page-2 .pp2-agent-card {
    background: #1a1a1a;
    border-radius: 2px;
    padding: 32px 28px;
    position: sticky;
    top: 16px;
}

.property-page-2 .pp2-agent-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    display: block;
    margin: 0 auto 18px;
    border: 3px solid rgba(184, 147, 90, 0.3);
}

.property-page-2 .pp2-agent-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin-bottom: 8px;
}

.property-page-2 .pp2-agent-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.65;
    margin-bottom: 24px;
}

.property-page-2 .pp2-cta-btn {
    display: block;
    width: 100%;
    background: var(--main-color);
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.25s ease;
    margin-bottom: 0;
}

.property-page-2 .pp2-cta-btn:hover {
    opacity: 0.82;
    color: #fff;
}

.property-page-2 .pp2-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 24px 0;
}

.property-page-2 .pp2-card-meta-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: 5px;
}

.property-page-2 .pp2-card-meta-val {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
}


.property-page-2 .pp2-gallery-single {
    position: relative;
    overflow: hidden;
    height: 520px;
}

.property-page-2 .pp2-gallery-single a:first-child {
    display: block;
    width: 100%;
    height: 100%;
}

.property-page-2 .pp2-gallery-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.property-page-2 .pp2-gallery-single:hover img {
    transform: scale(1.02);
}

@media (max-width: 767.98px) {
    .property-page-2 .pp2-gallery-single {
        height: 280px;
    }
}