/********** Kibor Properties — Real Estate Theme **********/

/* ===== CSS Variables ===== */
:root {
    --pink: #FFC5D3;
    --pink-light: #ffedf3;
    --pink-dark: #e8a3b5;
    --berry: #7a2e4a;
    --berry-light: #9b4565;
    --plum: #3d1525;
    --white: #ffffff;
    --off-white: #f6f3f1;
    --section-alt: #f9f7f6;
    --gray-100: #f0ece9;
    --gray-200: #e8e0dc;
    --gray-500: #8c7078;
    --gray-700: #5a3d45;
    --gray-900: #2d1a20;
    --success: #28a745;
    --whatsapp: #25D366;
    --shadow: 0 8px 30px rgba(122, 46, 74, 0.08);
    --shadow-lg: 0 15px 50px rgba(122, 46, 74, 0.14);
    --radius: 14px;
    --radius-sm: 10px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== Global ===== */
body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    overflow-x: hidden;
    background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--gray-900);
    font-weight: 700;
}

a {
    transition: var(--transition);
}

.section-subtitle {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--berry);
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--berry);
}

/* ===== Spinner ===== */
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: var(--plum) !important;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

#spinner .spinner-grow {
    background-color: var(--berry);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    background: var(--berry) !important;
    border: none !important;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    box-shadow: 0 4px 15px rgba(122, 46, 74, 0.3);
}

.back-to-top:hover {
    background: var(--plum) !important;
    transform: translateY(-3px);
}

/* ===== Buttons ===== */
.btn {
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.btn-primary {
    background: var(--berry) !important;
    border-color: var(--berry) !important;
    color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--plum) !important;
    border-color: var(--plum) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 46, 74, 0.3);
}

.btn-outline-primary {
    border-color: var(--berry) !important;
    color: var(--berry) !important;
}

.btn-outline-primary:hover {
    background: var(--berry) !important;
    color: var(--white) !important;
}

.btn-navy {
    background: var(--plum);
    border-color: var(--plum);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--berry-light);
    border-color: var(--berry-light);
    color: var(--berry);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: var(--white);
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #1da851;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.text-primary {
    color: var(--berry) !important;
}

.bg-primary {
    background-color: var(--berry) !important;
}

/* ===== Navbar ===== */
.sticky-top {
    top: -150px;
    transition: all 0.5s ease;
    z-index: 9999;
}

.navbar {
    padding: 18px 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.navbar .navbar-brand h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin: 0;
}

.navbar .navbar-brand h1 span {
    color: var(--berry);
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 0;
    outline: none;
    color: var(--gray-900);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* Navbar dark mode (transparent over page-header) */
.navbar-dark-mode {
    background: transparent !important;
}

.navbar-dark-mode .navbar .navbar-brand h1 {
    color: var(--white);
}

.navbar-dark-mode .navbar .navbar-brand h1 span {
    color: var(--pink);
}

.navbar-dark-mode .navbar .navbar-brand img {
    filter: none;
}

.navbar-dark-mode .navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar-dark-mode .navbar .navbar-nav .nav-link:hover,
.navbar-dark-mode .navbar .navbar-nav .nav-link.active {
    color: var(--white);
}

.navbar-dark-mode .navbar .navbar-nav .nav-link::after {
    background: var(--pink);
}

.navbar-dark-mode .navbar .btn-nav-cta {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.navbar-dark-mode .navbar .btn-nav-cta:hover {
    background: var(--white);
    color: var(--berry);
    border-color: var(--white);
}

.navbar-dark-mode .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}

.navbar-dark-mode .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--berry);
    transition: var(--transition);
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--berry);
}

.navbar .btn-nav-cta {
    margin-left: 30px;
    padding: 8px 20px;
    background: var(--berry);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--berry);
}

/* Currency Toggle */
.currency-toggle {
    display: inline-flex;
    margin-left: 20px;
    background: var(--gray-100);
    border-radius: 50px;
    padding: 3px;
    border: 1px solid var(--gray-200);
}

.currency-btn {
    border: none;
    background: transparent;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.currency-btn.active {
    background: var(--berry);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(122, 46, 74, 0.25);
}

.currency-btn:hover:not(.active) {
    color: var(--berry);
}

/* Dark mode navbar currency toggle */
.navbar-dark-mode .currency-toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-dark-mode .currency-btn {
    color: rgba(255, 255, 255, 0.6);
}

.navbar-dark-mode .currency-btn.active {
    background: var(--white);
    color: var(--berry);
}

.navbar-dark-mode .currency-btn:hover:not(.active) {
    color: var(--white);
}

.navbar .btn-nav-cta:hover {
    background: transparent;
    color: var(--berry);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .btn-nav-cta {
        margin-left: 0;
        margin-top: 10px;
        display: inline-block;
    }

    .currency-toggle {
        margin-left: 0;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    /* Dark mode mobile menu: give collapse a solid bg so links are readable */
    .navbar-dark-mode .navbar-collapse {
        background: var(--plum);
        border-radius: var(--radius-sm);
        padding: 15px 20px;
        margin-top: 10px;
    }

    /* White mode mobile menu: same card style */
    .navbar-collapse {
        background: var(--white);
        border-radius: var(--radius-sm);
        padding: 15px 20px;
        margin-top: 10px;
        box-shadow: var(--shadow);
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/* ===== Hero Header ===== */
.hero-header {
    margin-top: -100px;
    padding-top: 160px;
    padding-bottom: 80px;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), transparent);
    opacity: 0.35;
    pointer-events: none;
}

.hero-header::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-100), transparent);
    opacity: 0.5;
    pointer-events: none;
}

.hero-header::after {
    display: none;
}

.hero-header h1 {
    color: var(--gray-900);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
}

.hero-header h1 .text-primary {
    color: var(--berry) !important;
    position: relative;
}

.hero-header h1 .text-primary::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--pink-light);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.6;
}

.hero-desc {
    color: var(--gray-500);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 520px;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--gray-500);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    padding: 8px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--berry);
    letter-spacing: 0.5px;
}

.hero-badge i {
    font-size: 12px;
}

/* Hero Buttons */
.btn-hero {
    padding: 14px 28px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-hero:hover::before {
    width: 300px;
    height: 300px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(122, 46, 74, 0.2);
}

/* Hero Trust Row */
.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 10px;
    border-top: 1px solid var(--gray-200);
}

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

.hero-trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--gray-100), var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.hero-trust-item:hover .hero-trust-icon {
    background: linear-gradient(145deg, var(--plum), var(--berry));
}

.hero-trust-icon i {
    font-size: 16px;
    color: var(--berry);
    transition: var(--transition);
}

.hero-trust-item:hover .hero-trust-icon i {
    color: var(--white);
}

.hero-trust-item strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--gray-900);
    line-height: 1.2;
}

.hero-trust-item span {
    font-size: 12px;
    color: var(--gray-500);
    letter-spacing: 0.5px;
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
}

/* Hero Floating Card */
.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    animation: hero-float 3s ease-in-out infinite;
    z-index: 10;
}

.hero-floating-card .hero-floating-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--gray-100), var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-floating-card .hero-floating-icon i {
    font-size: 18px;
    color: var(--berry);
}

.hero-floating-card strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--gray-900);
    line-height: 1.3;
}

.hero-floating-card span {
    font-size: 13px;
    font-weight: 600;
}

@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero Search Bar */
.hero-search {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 25px 30px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.hero-search .form-select,
.hero-search .form-control {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 15px;
    color: var(--gray-900);
    font-weight: 500;
}

.hero-search .form-select:focus,
.hero-search .form-control:focus {
    box-shadow: 0 0 0 3px rgba(122, 46, 74, 0.15);
    border-color: var(--pink);
}

.hero-search .btn-search {
    background: var(--berry);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 35px;
    font-weight: 700;
    font-size: 15px;
    width: 100%;
}

.hero-search .btn-search:hover {
    background: var(--plum);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 46, 74, 0.3);
}

/* Header Carousel */
.header-carousel {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.header-carousel::before {
    display: none;
}

.header-carousel img {
    border-radius: var(--radius);
}

.header-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    transition: var(--transition);
    margin: 0;
}

.header-carousel .owl-dot.active {
    width: 30px;
    height: 12px;
    border-radius: 6px;
    background: var(--berry);
    border-color: var(--berry);
}

/* ===== Stats Counter ===== */
.stats-section {
    background: var(--pink);
    padding: 50px 0;
    position: relative;
}

.stats-section::before {
    display: none;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--berry);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===== Why Choose Us / Difference ===== */
.difference-section {
    position: relative;
    overflow: hidden;
}

.difference-section::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), transparent);
    opacity: 0.3;
    pointer-events: none;
}

.why-choose-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry), var(--pink));
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.why-choose-card:hover::before {
    width: 60%;
}

.why-choose-card .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--gray-100), var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-choose-card:hover .icon-box {
    background: linear-gradient(145deg, var(--plum), var(--berry));
    border-radius: 50%;
    transform: scale(1.08);
}

.why-choose-card .icon-box i {
    font-size: 28px;
    color: var(--berry);
    transition: var(--transition);
}

.why-choose-card:hover .icon-box i {
    color: var(--white);
}

.why-choose-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.why-choose-card:hover h4 {
    color: var(--berry);
}

.why-choose-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* ===== Property Cards ===== */
.property-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
    position: relative;
}

.property-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry), var(--pink));
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
    z-index: 1;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.property-card:hover::before {
    width: 60%;
}

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

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

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

.property-card .property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.property-badge.sale {
    background: var(--pink);
    color: var(--white);
}

.property-badge.rent {
    background: var(--plum);
    color: var(--white);
}

.property-badge.offplan {
    background: var(--success);
    color: var(--white);
}

.property-card .property-price {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(45, 26, 32, 0.85);
    backdrop-filter: blur(10px);
    color: var(--pink);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.property-card .property-body {
    padding: 22px 25px;
}

.property-card .property-body h5 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.property-card .property-body h5 a {
    color: var(--plum);
    text-decoration: none;
}

.property-card .property-body h5 a:hover {
    color: var(--berry);
}

.property-card .property-location {
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 15px;
}

.property-card .property-location i {
    color: var(--berry);
    margin-right: 5px;
}

.property-card .property-features {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.property-card .property-features .feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
}

.property-card .property-features .feature i {
    color: var(--berry);
    font-size: 14px;
}

/* ===== Property Type Cards ===== */
.property-type-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    height: 250px;
    cursor: pointer;
}

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

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

.property-type-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(61, 21, 37, 0.9) 0%, rgba(61, 21, 37, 0.15) 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px 20px;
    transition: var(--transition);
}

.property-type-card:hover .overlay {
    background: linear-gradient(to top, rgba(61, 21, 37, 0.95) 0%, rgba(61, 21, 37, 0.35) 60%);
}

.property-type-card .overlay h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: var(--transition);
}

.property-type-card:hover .overlay h4 {
    transform: translateY(-4px);
}

.property-type-card .overlay .type-count {
    display: inline-block;
    background: rgba(255, 197, 211, 0.2);
    color: var(--pink);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.property-type-card .overlay .type-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--pink);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
    margin-top: 6px;
}

.property-type-card:hover .overlay .type-link {
    opacity: 1;
    transform: translateY(0);
}

.property-type-card .overlay .type-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.property-type-card:hover .overlay .type-link i {
    transform: translateX(4px);
}

.property-type-card .overlay span {
    color: var(--pink);
    font-size: 13px;
    font-weight: 500;
}

/* ===== Services ===== */
.services-section {
    background: var(--section-alt);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), transparent);
    opacity: 0.4;
    pointer-events: none;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 28px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry), var(--pink));
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.service-card:hover::before {
    width: 60%;
}

.service-number {
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-100);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.service-card:hover .service-number {
    color: var(--pink-light);
}

.service-card .service-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: linear-gradient(145deg, var(--gray-100), var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
    position: relative;
}

.service-card:hover .service-icon {
    background: linear-gradient(145deg, var(--plum), var(--berry));
    border-radius: 50%;
    transform: scale(1.08);
}

.service-card .service-icon i {
    font-size: 28px;
    color: var(--berry);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.service-card:hover h4 {
    color: var(--berry);
}

.service-card p {
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--berry);
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    transition: var(--transition);
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--berry);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card:hover .service-link::after {
    width: 100%;
}

.service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* ===== About Section ===== */
.about-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.about-section::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), transparent);
    opacity: 0.3;
    pointer-events: none;
}

.about-img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.about-experience-badge {
    background: linear-gradient(145deg, var(--plum), var(--berry));
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-experience-badge::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.about-experience-badge .about-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.about-experience-badge .about-badge-icon i {
    font-size: 20px;
    color: var(--pink);
}

.about-experience-badge h4 {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.about-text {
    color: var(--gray-500);
    line-height: 1.7;
    font-size: 15px;
}

.about-mv-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-mv-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry), var(--pink));
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
}

.about-mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.about-mv-card:hover::before {
    width: 60%;
}

.about-mv-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--gray-100), var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: var(--transition);
}

.about-mv-card:hover .about-mv-icon {
    background: linear-gradient(145deg, var(--plum), var(--berry));
    border-radius: 50%;
}

.about-mv-icon i {
    font-size: 18px;
    color: var(--berry);
    transition: var(--transition);
}

.about-mv-card:hover .about-mv-icon i {
    color: var(--white);
}

.about-mv-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
    transition: var(--transition);
}

.about-mv-card:hover h5 {
    color: var(--berry);
}

.about-mv-card p {
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

/* ===== Feature / Property Type Section ===== */
.feature-section {
    position: relative;
    overflow: hidden;
    background: var(--section-alt);
}

.feature-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), transparent);
    opacity: 0.3;
    pointer-events: none;
}

/* ===== Team ===== */
.team-section {
    position: relative;
    overflow: hidden;
    background: var(--section-alt);
}

.team-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), transparent);
    opacity: 0.35;
    pointer-events: none;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry), var(--pink));
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.team-card:hover::before {
    width: 60%;
}

.team-card .team-img {
    position: relative;
    overflow: hidden;
    height: 300px;
}

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

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

.team-card .team-social {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    transition: var(--transition);
    opacity: 0;
}

.team-card:hover .team-social {
    bottom: 15px;
    opacity: 1;
}

.team-card .team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    color: var(--plum);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: var(--transition);
}

.team-card .team-social a:hover {
    background: var(--berry);
    color: var(--white);
}

.team-card .team-body {
    padding: 20px 25px;
    text-align: center;
}

.team-card .team-body h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-card .team-body span {
    color: var(--berry);
    font-size: 13px;
    font-weight: 500;
}

/* ===== Testimonials ===== */
.testimonial-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), transparent);
    opacity: 0.3;
    pointer-events: none;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 35px;
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid transparent;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 3rem;
    color: rgba(122, 46, 74, 0.1);
}

.testimonial-card .stars {
    color: var(--berry);
    font-size: 14px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--gray-500);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .client-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pink);
}

.testimonial-card .client-info h6 {
    margin: 0;
    font-size: 1rem;
}

.testimonial-card .client-info small {
    color: var(--berry);
    font-size: 13px;
}

.testimonial-carousel .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    transition: var(--transition);
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    border-radius: 6px;
    background: var(--pink);
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--plum) 0%, #5a1e3a 50%, var(--berry) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-decoration {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-section::after {
    display: none;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
}

.cta-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.7;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}

.cta-form-card {
    background: var(--white);
    border: 1px solid rgba(122, 46, 74, 0.12);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
}

.cta-form-card h4 {
    color: var(--plum);
    margin-bottom: 10px;
}

.cta-form-card p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-form-card .form-control {
    background: var(--off-white);
    border: 1px solid rgba(122, 46, 74, 0.14);
    color: var(--gray-900);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.cta-form-card .form-control::placeholder {
    color: var(--gray-500);
}

.cta-form-card .form-control:focus {
    background: var(--white);
    border-color: var(--pink);
    box-shadow: 0 0 0 3px rgba(255, 197, 211, 0.15);
    color: var(--gray-900);
}

/* ===== Newsletter ===== */
.newsletter-section {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(19, 34, 56, 0.95)),
        url(../img/hero-bg.jpg) center center no-repeat;
    background-size: cover;
}

/* ===== Blog Section ===== */
.blog-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), transparent);
    opacity: 0.3;
    pointer-events: none;
}

/* ===== Blog Cards ===== */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry), var(--pink));
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.blog-card:hover::before {
    width: 60%;
}

.blog-card .blog-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.blog-card .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pink);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.blog-card .blog-date {
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 10px;
}

.blog-card .blog-date i {
    color: var(--berry);
    margin-right: 5px;
}

.blog-card .blog-body h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.blog-card .blog-body h5 a {
    color: var(--plum);
    text-decoration: none;
}

.blog-card .blog-body h5 a:hover {
    color: var(--berry);
}

.blog-card .blog-body p {
    color: var(--gray-500);
    font-size: 14px;
}

.blog-card .read-more,
.blog-card .service-link {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--berry);
    text-decoration: none;
    padding: 6px 0;
    position: relative;
    transition: var(--transition);
}

.blog-card .read-more::after,
.blog-card .service-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--berry);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.blog-card:hover .read-more::after,
.blog-card:hover .service-link::after {
    width: 100%;
}

.blog-card .read-more i,
.blog-card .service-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.blog-card:hover .read-more i,
.blog-card:hover .service-link i {
    transform: translateX(4px);
}

/* ===== Contact Section ===== */
.contact-section {
    position: relative;
    overflow: hidden;
    background: var(--section-alt);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), transparent);
    opacity: 0.35;
    pointer-events: none;
}

/* ===== Contact ===== */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry), var(--pink));
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-200);
}

.contact-info-card:hover::before {
    width: 60%;
}

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(145deg, var(--gray-100), var(--pink-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.contact-info-card:hover .icon {
    background: linear-gradient(145deg, var(--plum), var(--berry));
    border-radius: 50%;
    transform: scale(1.08);
}

.contact-info-card .icon i {
    font-size: 22px;
    color: var(--berry);
    transition: var(--transition);
}

.contact-info-card:hover .icon i {
    color: var(--white);
}

.contact-info-card h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    transition: var(--transition);
}

.contact-info-card:hover h5 {
    color: var(--berry);
}

.contact-info-card p {
    color: var(--gray-500);
    font-size: 14px;
    margin: 0;
    line-height: 1.7;
}

.contact-info-card p a {
    color: var(--berry);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-info-card p a:hover {
    color: var(--plum);
}

/* ===== Filters ===== */
.filter-bar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 25px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.filter-bar .form-select {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 14px;
    color: var(--plum);
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tabs .filter-tab {
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid var(--gray-200);
    background: transparent;
    color: var(--plum);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-tabs .filter-tab:hover,
.filter-tabs .filter-tab.active {
    border-color: var(--berry);
    background: var(--pink);
    color: var(--white);
}

/* ===== Property Detail ===== */

/* -- Gallery (Preview + Thumbs) -- */
.detail-gallery {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-preview {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-100);
    margin-bottom: 12px;
    aspect-ratio: 16 / 9;
}

.gallery-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
    transition: opacity 0.25s ease;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-200) transparent;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: var(--gray-200);
    border-radius: 4px;
}

.gallery-thumb {
    flex: 0 0 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: var(--transition);
}

.gallery-thumb:hover {
    opacity: 0.85;
}

.gallery-thumb.active {
    border-color: var(--berry);
    opacity: 1;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* -- Title & Price Row -- */
.detail-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.detail-price-block {
    text-align: right;
}

.detail-price-block h3 {
    color: var(--berry);
    white-space: nowrap;
}

/* -- Stats Row -- */
.detail-stats-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.detail-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    background: var(--gray-100);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    flex: 1 1 0;
    min-width: 120px;
    justify-content: center;
}

.detail-stat-item:hover {
    background: var(--pink);
    color: var(--plum);
}

.detail-stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gray-100), var(--pink));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.detail-stat-icon i {
    color: var(--berry);
    font-size: 15px;
}

.detail-stat-item:hover .detail-stat-icon {
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum), var(--berry));
}

.detail-stat-item:hover .detail-stat-icon i {
    color: var(--white);
}

/* -- Amenity Chips -- */
.amenity-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.amenity-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: var(--gray-100);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    transition: var(--transition);
    border: 1px solid transparent;
}

.amenity-chip:hover {
    background: var(--pink);
    border-color: rgba(122, 46, 74, 0.15);
    color: var(--plum);
}

.amenity-chip i {
    color: var(--berry);
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* -- Detail Info Cards -- */
.detail-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    border: 1px solid transparent;
    position: relative;
    transition: var(--transition);
}

.detail-info-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--berry), var(--pink));
    border-radius: 3px 3px 0 0;
    transition: width 0.4s ease;
}

.detail-info-card:hover {
    border-color: var(--gray-200);
}

.detail-info-card:hover::before {
    width: 40%;
}

.detail-info-card h4 {
    font-size: 1.2rem;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-100);
    margin-bottom: 20px;
    color: var(--plum);
}

/* -- Sidebar -- */
.detail-sidebar {
    position: sticky;
    top: 100px;
}

.detail-sidebar-inner {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid transparent;
    transition: var(--transition);
}

.detail-sidebar-inner:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.detail-sidebar-inner h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--plum);
}

.detail-sidebar-inner h4 i {
    color: var(--berry);
}

.detail-sidebar-inner .form-control,
.detail-sidebar-inner .form-select {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.detail-sidebar-inner .form-control:focus,
.detail-sidebar-inner .form-select:focus {
    border-color: var(--berry);
    box-shadow: 0 0 0 3px rgba(122, 46, 74, 0.12);
}

.detail-sidebar-inner .btn-whatsapp,
.detail-sidebar-inner .btn-navy {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
}

.detail-sidebar-inner .service-link {
    margin-top: 8px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-700);
}

.amenity-item i {
    color: var(--berry);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
}

.payment-table th {
    background: var(--plum);
    color: var(--white);
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
}

.payment-table td {
    padding: 12px 18px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}

.payment-table tr:last-child td {
    border-bottom: none;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 45px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: var(--white);
    font-size: 28px;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== Page Header (Inner Pages) ===== */
.page-header {
    margin-top: -100px;
    padding: 180px 0 70px;
    background: linear-gradient(135deg, var(--plum) 0%, #5a1e3a 50%, var(--berry) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 197, 211, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 197, 211, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--off-white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-header-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item a {
    color: var(--pink);
    text-decoration: none;
    font-weight: 500;
}

.page-header .breadcrumb-item a:hover {
    color: var(--white);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== About Stats Section ===== */
.about-stats-section {
    background: var(--white);
}

.about-stat-card {
    padding: 30px 20px;
    border-radius: var(--radius);
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--pink);
}

.about-stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--berry), var(--plum));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 22px;
}

.about-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--plum);
    margin-bottom: 4px;
    line-height: 1;
}

.about-stat-card p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== About CTA Section ===== */
.about-cta-section {
    background: linear-gradient(135deg, var(--plum) 0%, var(--berry) 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 50%, rgba(255, 197, 211, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 30%, rgba(255, 197, 211, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.about-cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.about-cta-section p {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.about-cta-section .btn {
    position: relative;
    z-index: 1;
}

/* ===== Lead Form ===== */
.lead-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
}

.lead-form h4 {
    margin-bottom: 25px;
}

.lead-form .form-control,
.lead-form .form-select {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 15px;
}

.lead-form .form-control:focus,
.lead-form .form-select:focus {
    border-color: var(--berry);
    box-shadow: 0 0 0 3px rgba(122, 46, 74, 0.15);
}

/* ===== Footer ===== */
.footer {
    background: var(--plum);
    color: rgba(255, 255, 255, 0.6);
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--pink);
}

.footer .brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
}

.footer .brand-name span {
    color: var(--berry);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
    font-weight: normal;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link:hover {
    color: var(--berry);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-contact p {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer .footer-contact i {
    color: var(--berry);
    margin-right: 10px;
    width: 20px;
}

.footer .social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 8px;
    transition: var(--transition);
    text-decoration: none;
}

.footer .social-links a:hover {
    background: var(--berry);
    border-color: var(--berry);
    color: var(--white);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .copyright a {
    color: var(--berry);
    text-decoration: none;
}

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

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
}

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

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* ===== Error Section (404) ===== */
.error-section {
    position: relative;
    overflow: hidden;
    background: var(--section-alt);
}

.error-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(122, 46, 74, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

/* Error Code Block */
.error-code-block {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.error-code {
    font-family: 'Outfit', sans-serif;
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
    display: block;
    user-select: none;
}

.error-icon-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--berry), var(--plum));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(122, 46, 74, 0.25);
    animation: errorPulse 2s ease-in-out infinite;
}

.error-icon-ring i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes errorPulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(122, 46, 74, 0.25); }
    50% { box-shadow: 0 10px 60px rgba(122, 46, 74, 0.4); }
}

.error-section h3 {
    color: var(--plum);
    font-weight: 700;
}

/* Quick Links Cards */
.error-quick-link {
    display: block;
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.error-quick-link:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--pink);
}

.error-ql-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 20px;
    color: var(--berry);
    transition: var(--transition);
}

.error-quick-link:hover .error-ql-icon {
    background: linear-gradient(135deg, var(--berry), var(--plum));
    color: var(--white);
}

.error-quick-link h6 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 6px;
}

.error-quick-link p {
    color: var(--gray-500);
    font-size: 13px;
    margin: 0;
}

/* ===== Property Detail Section ===== */
.property-detail-section {
    position: relative;
    overflow: hidden;
}

.property-detail-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122, 46, 74, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    pointer-events: none;
}

.property-detail-section .detail-info-card i {
    color: var(--berry);
    font-size: 18px;
}

.property-detail-section .fw-bold.text-primary {
    color: var(--berry) !important;
}

/* ===== Property Listing Section ===== */
.property-listing-section {
    position: relative;
    overflow: hidden;
}

.property-listing-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(122, 46, 74, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    pointer-events: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero-header h1 {
        font-size: 2.2rem;
    }

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

    .hero-search {
        padding: 20px;
    }

    .hero-trust-row {
        gap: 16px;
    }

    .hero-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        display: inline-flex;
        animation: none;
    }

    .stat-item .stat-number {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

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

    .page-header {
        padding: 160px 0 60px;
    }

    .page-header-desc {
        font-size: 0.95rem;
    }

    .error-code {
        font-size: 7rem;
    }

    .error-icon-ring {
        width: 70px;
        height: 70px;
    }

    .error-icon-ring i {
        font-size: 1.6rem;
    }

    /* -- Property Detail Mobile -- */
    .gallery-preview {
        aspect-ratio: 4 / 3;
    }

    .gallery-thumb {
        flex: 0 0 70px;
        height: 52px;
    }

    .detail-title-row {
        flex-direction: column;
        gap: 12px;
    }

    .detail-price-block {
        text-align: left;
    }

    .detail-stats-row {
        gap: 10px;
    }

    .detail-stat-item {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 0;
        flex: 1 1 calc(50% - 10px);
    }

    .detail-info-card {
        padding: 20px;
        margin-bottom: 16px;
    }

    .amenity-chip {
        padding: 8px 14px;
        font-size: 12px;
    }

    .detail-sidebar {
        position: static;
    }

    .detail-sidebar-inner {
        padding: 22px;
    }

    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-header {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-header h1 {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 140px 0 50px;
    }

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

    .page-header-desc {
        font-size: 0.9rem;
    }

    .page-header::after {
        height: 30px;
    }

    .error-code {
        font-size: 5rem;
    }

    .error-icon-ring {
        width: 60px;
        height: 60px;
    }

    .error-icon-ring i {
        font-size: 1.3rem;
    }

    .error-quick-link {
        padding: 20px 16px;
    }

    .hero-trust-row {
        flex-direction: column;
        gap: 12px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .btn-hero {
        padding: 12px 22px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .filter-tabs {
        justify-content: center;
    }

    .gallery-preview {
        aspect-ratio: 3 / 2;
    }

    .gallery-thumb {
        flex: 0 0 60px;
        height: 44px;
    }

    .detail-stat-item {
        flex: 1 1 100%;
    }

    .amenity-grid {
        gap: 8px;
    }

    .amenity-chip {
        padding: 7px 12px;
        font-size: 12px;
    }

    .detail-info-card {
        padding: 16px;
    }
}

/* Content Spacer for Inner Pages */
.content-spacer {
    padding-top: 140px;
}

/* ===== Payment Plan Cards ===== */
.payment-plan-card {
    background: var(--gray-100);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.payment-plan-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--pink);
}

.payment-plan-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--berry);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.payment-plan-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--berry);
    line-height: 1.35;
    word-break: break-word;
    margin-bottom: 0.35rem;
}

.payment-plan-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .payment-plan-grid .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .payment-plan-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
        padding: 1rem 1.25rem;
    }

    .payment-plan-icon {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .payment-plan-value {
        font-size: 0.95rem;
    }

    .payment-plan-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 991.98px) {
    .content-spacer {
        padding-top: 100px;
    }
}

/* ===== Professional Tables (Available Units / Payment Plan) ===== */
.pro-table-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.pro-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.pro-table thead {
    background: linear-gradient(135deg, var(--berry) 0%, var(--berry-light) 100%);
}

.pro-table thead th {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 18px;
    border: none;
    white-space: nowrap;
}

.pro-table tbody tr {
    transition: var(--transition);
}

.pro-table tbody tr:nth-child(even) {
    background: var(--gray-100);
}

.pro-table tbody tr:hover {
    background: var(--pink-light);
}

.pro-table tbody td {
    padding: 13px 18px;
    font-size: 0.92rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
}

.pro-table tbody tr:last-child td {
    border-bottom: none;
}

.fw-600 {
    font-weight: 600;
}

.text-success {
    color: var(--success) !important;
}

/* Mobile cards for tables */
.pro-mobile-card {
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 12px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(122, 46, 74, 0.04);
}

.pro-mobile-card-header {
    background: linear-gradient(135deg, var(--berry) 0%, var(--berry-light) 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 16px;
}

.pro-mobile-card-body {
    padding: 0;
}

.pro-mobile-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.pro-mobile-row:last-child {
    border-bottom: none;
}

.pro-mobile-label {
    color: var(--gray-500);
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== Developer Info Grid ===== */
.dev-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.dev-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.dev-info-item:hover {
    background: var(--pink-light);
    border-color: var(--pink);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 46, 74, 0.08);
}

.dev-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pink);
    color: var(--berry);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.dev-info-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 2px;
}

.dev-info-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
}

@media (max-width: 575.98px) {
    .dev-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dev-info-item {
        padding: 14px 14px;
        gap: 12px;
    }

    .dev-info-icon {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .dev-info-value {
        font-size: 0.92rem;
    }
}

/* ===== ROI / Rental Projections Table ===== */
.roi-table tbody td {
    vertical-align: top;
}

.roi-meta {
    display: block;
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 3px;
}

.roi-meta i {
    width: 14px;
    text-align: center;
    font-size: 0.7rem;
    color: var(--berry-light);
}

.roi-value {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    line-height: 1.45;
}

.roi-value-highlight {
    color: var(--berry);
    background: var(--pink);
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.84rem;
    font-weight: 700;
    white-space: nowrap;
}

.roi-mobile-card .pro-mobile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.roi-mobile-badge {
    font-size: 0.72rem;
    font-weight: 500;
    background: rgba(255,255,255,0.2);
    padding: 3px 10px;
    border-radius: 20px;
}