/* Modern Market Styling */

/* --- Horizontal Search Bar --- */
.market-search-bar {
    background: #ffffff;
    border-radius: 60px;
    padding: 12px 12px 12px 32px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    max-width: 1080px;
    margin: -45px auto 0;
    /* Pull up over the hero */
    position: relative;
    z-index: 20;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.market-search-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.market-search-group:last-of-type {
    border-right: none;
}

.market-search-label {
    font-size: 12px;
    font-weight: 800;
    color: #64748b;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.market-search-label i {
    color: var(--theme);
}

.market-search-control {
    border: none;
    padding: 0;
    height: 28px;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    background: transparent;
    box-shadow: none !important;
    outline: none !important;
    width: 100%;
}

.market-search-control:focus {
    color: #0f172a !important;
    background: transparent !important;
}

.market-search-control::placeholder {
    color: #cbd5e1;
    font-weight: 600;
}

/* Remove Number Input Spinners */
.market-search-group input[type="number"]::-webkit-inner-spin-button,
.market-search-group input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.market-search-group input[type="number"] {
    -moz-appearance: textfield;
    /* Firefox */
}

/* Select Dropdown Arrows */
.market-search-group select.market-search-control {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f172a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 14px;
    padding-right: 24px;
}

.market-search-btn {
    background: var(--theme);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0 40px;
    height: 60px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(129, 189, 241, 0.4);
    margin-left: 10px;
}

.market-search-btn:hover {
    background: #0f172a;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.25);
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 991px) {
    .market-search-bar {
        border-radius: 24px;
        flex-direction: column;
        padding: 24px;
        margin: -60px 20px 0;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .market-search-group {
        border-right: none;
        border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        padding: 16px 0;
        width: 100%;
    }

    .market-search-group:first-child {
        padding-top: 0;
    }

    .market-search-group:last-of-type {
        border-bottom: none;
    }

    .market-search-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }
}


/* --- Process / 3 Steps Section (Redesigned) --- */
.market-process-wrapper {
    background: #f8fafc;
    /* Soft background to make white cards pop */
    padding: 100px 0 80px;
    position: relative;
    z-index: 10;
}

/* Beautiful modern cards for the steps */
.market-process-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
}

.market-process-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(129, 189, 241, 0.2);
}

.market-process-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    color: var(--theme);
    border-radius: 24px;
    /* Squircle shape */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 28px;
    transition: all 0.4s ease;
    transform: rotate(-5deg);
    /* Playful angle */
}

.market-process-item:hover .market-process-icon {
    background: var(--theme);
    color: #fff;
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 15px 30px rgba(129, 189, 241, 0.4);
}

.market-process-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.market-process-desc {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Step Number Badge */
.market-process-step-num {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(15, 23, 42, 0.03);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.market-process-item:hover .market-process-step-num {
    color: rgba(129, 189, 241, 0.1);
    transform: scale(1.1) translate(-10px, 10px);
}

.market-process-content {
    position: relative;
    z-index: 2;
}

/* --- Categories Section (Redesigned) --- */
.market-category-wrapper {
    background: #ffffff;
    padding: 80px 0;
}

.market-category-header {
    margin-bottom: 40px;
}

.market-category-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.market-category-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

.market-category-card {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.market-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.market-category-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 0;
}

.market-category-card:hover .market-category-bg {
    transform: scale(1.08);
}

.market-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.market-category-card:hover::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.9) 100%);
}

.market-category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.market-category-info h4 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 4px 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.market-category-info span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    display: block;
}

.market-category-card:hover .market-category-info h4 {
    transform: translateY(0);
}

.market-category-card:hover .market-category-info span {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

.market-category-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.4s ease;
}

.market-category-card:hover .market-category-btn {
    background: var(--theme);
    transform: translateX(0) scale(1.1);
}

/* --- Clean Categories (No Image) --- */
.market-category-card.clean-card {
    height: auto;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    padding: 30px;
    display: flex;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.market-category-card.clean-card::after {
    display: none;
}

.market-category-content-clean {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
}

.market-category-icon-clean {
    width: 70px;
    height: 70px;
    background: #f1f5f9;
    color: var(--theme);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.market-category-info-clean {
    flex: 1;
}

.market-category-info-clean h4 {
    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 4px 0;
    transition: all 0.4s ease;
}

.market-category-info-clean span {
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s ease;
}

.market-category-info-clean span i {
    font-size: 14px;
    transition: transform 0.4s ease;
}

.market-category-card.clean-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: rgba(129, 189, 241, 0.2);
}

.market-category-card.clean-card:hover .market-category-icon-clean {
    background: var(--theme);
    color: #ffffff;
    transform: scale(1.05);
}

.market-category-card.clean-card:hover .market-category-info-clean h4 {
    color: var(--theme);
}

.market-category-card.clean-card:hover .market-category-info-clean span i {
    transform: translateX(5px);
}

/* --- Inline Process (3 Steps inside Hero) --- */
.market-process-inline {
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 20px 30px;
}

.market-process-inline-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
}

.market-process-inline-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    flex-shrink: 0;
}

.market-process-inline-text {
    text-align: left;
}

.market-process-inline-text h5 {
    font-size: 15px;
    font-weight: 800;
    margin: 0 0 3px 0;
    color: #ffffff;
}

.market-process-inline-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.3;
}

@media(max-width: 768px) {
    .market-process-inline {
        background: transparent;
        border: none;
        padding: 0;
        margin-top: 30px;
    }

    .market-process-inline-item {
        background: rgba(15, 23, 42, 0.6);
        padding: 15px;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* --- V10 Premium Branding: Sell Property --- */
.v10-sell-property-section {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.v10-sell-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.v10-sell-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
}

.v10-sell-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v10-sell-features li {
    font-size: 1.05rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.v10-sell-features li i {
    color: var(--theme);
    font-size: 1.2rem;
    margin-top: 3px;
}

.v10-sell-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 999px;
    /* Consistent Pill Shape */
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(49, 120, 161, 0.2);
}

.v10-sell-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(49, 120, 161, 0.3);
    color: #ffffff;
}

.v10-sell-image-box {
    position: relative;
}

.v10-sell-stats {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.v10-sell-stat-item h3 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--theme);
    margin: 0;
    line-height: 1;
}

.v10-sell-stat-item span {
    font-size: 1rem;
    font-weight: 700;
    color: #64748b;
}

@media(max-width: 991px) {
    .v10-sell-stats {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }
}

/* --- Hero Search Bar Styling (Fix for Missing CSS) --- */
.market-search-bar {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    /* Consistent Pill Shape */
    padding: 10px 15px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.market-search-group {
    flex: 1;
    padding: 8px 20px;
    border-right: 1px solid #e2e8f0;
}

.market-search-group:nth-last-child(2) {
    border-right: none;
}

.market-search-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 4px;
    text-transform: uppercase;
    text-align: left;
}

.market-search-label i {
    color: var(--theme);
    margin-right: 4px;
}

.market-search-control {
    width: 100%;
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    box-shadow: none !important;
    outline: none !important;
}

.market-search-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

.market-search-btn {
    background: var(--theme);
    color: #fff;
    border: none;
    border-radius: 999px;
    /* Consistent Pill Shape */
    height: 56px;
    padding: 0 35px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-left: 10px;
}

.market-search-btn:hover {
    background: #1e638b;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(49, 120, 161, 0.3);
    color: #fff;
}

/* Update general CTA button to pill shape for consistency */
.v10-btn-white {
    border-radius: 999px !important;
}

@media(max-width: 991px) {
    .market-search-bar {
        flex-direction: column;
        border-radius: 24px;
        padding: 20px;
    }

    .market-search-group {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        width: 100%;
        padding: 15px 0;
    }

    .market-search-group:nth-last-child(2) {
        border-bottom: none;
    }

    .market-search-btn {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }
}

/* --- V10 Interactive Why Choose Us --- */
.v10-wcu-interactive-img {
    position: relative;
    border-radius: 24px;
    overflow: visible;
    z-index: 1;
}

.v10-wcu-main-img {
    transition: transform 0.5s ease;
    z-index: 2;
    position: relative;
}

.v10-wcu-interactive-img:hover .v10-wcu-main-img {
    transform: scale(1.02);
}

.v10-wcu-glass-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 3;
    animation: floatUpDown 4s ease-in-out infinite;
}

.v10-glass-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(255, 170, 0, 0.3);
}

.v10-glass-text h4 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.v10-glass-text span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

.v10-wcu-circle-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--theme) 0%, rgba(49, 120, 161, 0) 70%);
    opacity: 0.15;
    top: -40px;
    left: -40px;
    z-index: 0;
    border-radius: 50%;
}

.v10-wcu-interactive-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v10-wcu-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.v10-wcu-feature-card:hover {
    transform: translateX(10px);
    border-color: var(--theme);
    box-shadow: 0 10px 30px rgba(49, 120, 161, 0.08);
}

.v10-wcu-feature-icon {
    width: 55px;
    height: 55px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--theme);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.v10-wcu-feature-card:hover .v10-wcu-feature-icon {
    background: var(--theme);
    color: #ffffff;
    transform: scale(1.1) rotate(5deg);
}

.v10-wcu-feature-content h5 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.v10-wcu-feature-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* --- V10 Elegant Immersive Gallery --- */
.v10-gallery-item-elegant {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    height: 320px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.v10-gallery-item-elegant img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}

.v10-gallery-overlay-elegant {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v10-gallery-item-elegant:hover img {
    transform: scale(1.1);
}

.v10-gallery-item-elegant:hover .v10-gallery-overlay-elegant {
    opacity: 1;
}

.v10-gallery-icon-elegant {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme);
    font-size: 1.5rem;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.v10-gallery-item-elegant:hover .v10-gallery-icon-elegant {
    transform: scale(1);
    opacity: 1;
}

/* V10 About Us Premium */
.v10-about-img-group {
    position: relative;
    border-radius: 24px;
    z-index: 1;
    margin-bottom: 20px;
}

.v10-about-glass-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid #f1f5f9;
    padding: 20px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 3;
    animation: floatUpDown 4s ease-in-out infinite;
}

.v10-glass-icon-about {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--v10-primary), #205c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(49, 120, 161, 0.3);
}

.v10-glass-text-about h4 {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.v10-glass-text-about span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

.v10-about-img-group:hover .v10-about-bg-shape {
    top: -10px;
    right: -10px;
}

.v10-about-text-content {
    font-size: 1.05rem;
    color: #475569;
}

.v10-about-text-content p {
    margin-bottom: 1.2rem;
}

.v10-about-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.v10-about-contact-card:hover {
    border-color: var(--v10-primary);
    box-shadow: 0 10px 25px rgba(49, 120, 161, 0.08);
    transform: translateY(-5px);
}

.v10-contact-icon-large {
    width: 60px;
    height: 60px;
    background: var(--v10-primary-light);
    color: var(--v10-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.v10-about-contact-card:hover .v10-contact-icon-large {
    background: var(--v10-primary);
    color: #fff;
    transform: rotate(-10deg);
}

.v10-contact-info {
    flex-grow: 1;
}

.v10-contact-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8fafc;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.v10-about-contact-card:hover .v10-contact-arrow {
    background: var(--v10-primary);
    color: #fff;
}

/* CSS Moved from index.blade.php */

/* ... (Style Hero Section Anda tetap sama) ... */
.hero-modern .slide-swiper .hero-wrapper,
.hero-modern .slide-swiper .hero-wrapper * {
    color: #fff !important;
}

.hero-modern .slide-swiper .text-black,
.hero-modern .slide-swiper .text-dark,
.hero-modern .slide-swiper .text-body,
.hero-modern .slide-swiper .text-muted {
    color: rgba(255, 255, 255, .88) !important;
}

.hero-modern .hero-kicker {
    color: rgba(255, 255, 255, .92) !important;
}

.hero-modern .hero-desc {
    color: rgba(255, 255, 255, .86) !important;
}

.hero-modern .hero-pill {
    color: rgba(255, 255, 255, .92) !important;
}

.hero-modern .hero-title,
.hero-modern .hero-kicker,
.hero-modern .hero-desc,
.hero-modern .hero-pill {
    text-shadow: 0 10px 30px rgba(0, 0, 0, .55);
}

.hero-modern .slide-swiper::before {
    background: linear-gradient(90deg,
            rgba(2, 6, 23, .86) 0%,
            rgba(2, 6, 23, .58) 45%,
            rgba(2, 6, 23, .18) 100%) !important;
}

.hero-section.hero-modern {
    position: relative;
    overflow: hidden;
}

.sf-field {
    align-items: stretch;
}

.sf-field .sf-ico {
    align-self: center;
}

.sf-field .ts-wrapper {
    flex: 1 1 auto;
    width: 100%;
    align-self: stretch;
}

.sf-field .ts-control {
    height: 48px !important;
    min-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 8px;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sf-field .ts-control .item {
    display: inline-flex !important;
    align-items: center !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 850 !important;
    color: rgba(15, 23, 42, .92) !important;
}

.sf-field .ts-control input {
    height: 48px !important;
    line-height: 48px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    font-weight: 850 !important;
    color: rgba(15, 23, 42, .92) !important;
    caret-color: transparent;
    min-width: 0 !important;
}

.sf-field .ts-control input::placeholder {
    color: rgba(15, 23, 42, .55) !important;
    font-weight: 850 !important;
}

.sf-field .ts-wrapper.single .ts-control:after {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 8px !important;
    border-color: rgba(15, 23, 42, .55) transparent transparent transparent !important;
}

.sf-field .ts-wrapper.single.focus .ts-control:after {
    border-top-color: rgba(59, 130, 246, .95) !important;
}

.sf-field .ts-wrapper.focus .ts-control {
    box-shadow: none !important;
}

.ts-dropdown {
    border-radius: 14px !important;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .10) !important;
    box-shadow: 0 18px 45px rgba(2, 6, 23, .20) !important;
    z-index: 3000 !important;
}

.ts-dropdown .ts-dropdown-content {
    max-height: 280px;
}

.ts-dropdown .option {
    padding: 12px 14px !important;
    font-weight: 850 !important;
    color: rgba(15, 23, 42, .92) !important;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.ts-dropdown .option:last-child {
    border-bottom: 0;
}

.ts-dropdown .option.active {
    background: rgba(59, 130, 246, .10) !important;
    color: rgba(15, 23, 42, .98) !important;
}

.ts-dropdown .option.selected {
    background: rgba(59, 130, 246, .16) !important;
    color: rgba(15, 23, 42, .98) !important;
}

.ts-dropdown .no-results {
    padding: 12px 14px !important;
    font-weight: 800;
    color: rgba(15, 23, 42, .60);
}

.ts-wrapper.disabled .ts-control {
    opacity: .65;
    cursor: not-allowed !important;
}

.sf-field.sf-field--select {
    position: relative;
    padding-right: 44px;
}

.sf-field.sf-field--select::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    margin-top: -6px;
    border-right: 2px solid rgba(15, 23, 42, .55);
    border-bottom: 2px solid rgba(15, 23, 42, .55);
    transform: rotate(45deg);
    pointer-events: none;
    opacity: .9;
}

.sf-field.sf-field--select .sf-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 26px !important;
}

.sf-field .sf-ico {
    opacity: .9;
}

.sf-field.sf-field--select .sf-control:disabled {
    cursor: not-allowed;
    color: rgba(15, 23, 42, .45) !important;
    opacity: .75;
}

.sf-field.sf-field--select select.sf-control option {
    font-weight: 700;
    color: rgba(15, 23, 42, .92);
}

.hero-spotlight-wrap {
    position: absolute;
    inset: 0;
    z-index: 12;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.hero-spotlight-wrap .spotlight-col {
    pointer-events: auto;
}

.spotlight-shell {
    position: relative;
}

.spotlight-shell::before {
    content: "";
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 30% 30%,
            rgba(59, 130, 246, .35) 0%,
            rgba(59, 130, 246, .18) 32%,
            rgba(59, 130, 246, 0) 62%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}

.spotlight-card {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .55);
    box-shadow: 0 26px 70px rgba(2, 6, 23, .28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.spotlight-head {
    padding: 16px 18px 12px;
    background:
        linear-gradient(135deg, rgba(59, 130, 246, .16), rgba(59, 130, 246, 0) 55%),
        linear-gradient(0deg, rgba(15, 23, 42, .03), rgba(15, 23, 42, 0));
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.spotlight-title {
    margin: 0;
    font-weight: 950;
    letter-spacing: -.01em;
    font-size: 16px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.spotlight-title i {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(59, 130, 246, .12);
    color: rgba(59, 130, 246, .95);
}

.spotlight-sub {
    margin: 4px 0 0;
    font-size: 12.5px;
    font-weight: 750;
    color: rgba(15, 23, 42, .62);
}

.spotlight-body {
    padding: 16px 18px 18px;
}

.sf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sf-field {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 12px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, .10);
    background: rgba(255, 255, 255, .86);
    transition: .18s ease;
}

.sf-field:focus-within {
    border-color: rgba(59, 130, 246, .55);
    box-shadow: 0 0 0 .2rem rgba(59, 130, 246, .10);
    background: #fff;
}

.sf-ico {
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(15, 23, 42, .70);
    flex: 0 0 auto;
}

.sf-control {
    width: 100%;
    height: 48px;
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    font-weight: 800;
    color: rgba(15, 23, 42, .92);
}

.sf-control::placeholder {
    color: rgba(15, 23, 42, .55);
}

.sf-btn {
    margin-top: 12px;
    height: 50px;
    width: 100%;
    border-radius: 999px;
    font-weight: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 18px 45px rgba(59, 130, 246, .22);
}

@media (min-width: 992px) {
    .hero-spotlight-wrap .spotlight-col {
        margin-left: auto;
    }

    .spotlight-card {
        width: min(520px, 100%);
    }
}

@media (max-width: 991.98px) {
    .hero-spotlight-wrap {
        align-items: flex-end;
        padding-bottom: 18px;
    }

    .spotlight-shell::before {
        right: 50%;
        transform: translate(50%, -50%);
        width: 340px;
        height: 340px;
    }

    .spotlight-card {
        width: 100%;
        border-radius: 18px;
    }

    .sf-grid {
        grid-template-columns: 1fr;
    }
}

/* --- STYLE TAMBAHAN UNTUK GALLERY & MODAL --- */
.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

/* Overlay icon saat hover */
.gallery-card .overlay-icon {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.gallery-card:hover .overlay-icon {
    opacity: 1;
}

.gallery-card .overlay-icon i {
    font-size: 2rem;
    color: #fff;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* --- MODAL BARU (BIG IMAGE DESIGN) --- */
/* Membuat modal lebih lebar hampir fullscreen */
#serviceModal .modal-dialog {
    max-width: 95vw;
    /* Lebar 95% dari viewport */
    margin: 1.5rem auto;
}

#serviceModal .modal-content {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* Wrapper untuk gambar besar */
.modal-big-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    /* Background hitam biar gambar stand out */
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
}

/* Gambar diset tinggi banget (85% layar) */
#serviceModalImage {
    width: 100%;
    height: 85vh;
    /* 85% tinggi layar device */
    object-fit: contain;
    /* Agar gambar utuh terlihat. Ganti ke 'cover' jika ingin full tanpa sisa hitam */
    display: block;
    background: #0d0d0d;
}

/* Overlay Teks di bagian bawah */
.modal-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 80px 40px 40px;
    /* Padding atas lebih besar untuk gradasi */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
    pointer-events: none;
    /* Biar klik tembus ke gambar kalau perlu */
}

.modal-overlay-content * {
    pointer-events: auto;
}

.modal-overlay-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #fff;
}

.modal-overlay-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    line-height: 1.6;
}

/* Tombol Close yang Modern & Floating */
.btn-close-custom {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-close-custom:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
    color: #fff;
}

@media (max-width: 768px) {
    #serviceModalImage {
        height: 60vh;
        /* Di HP jangan terlalu tinggi biar muat */
        object-fit: cover;
    }

    .modal-overlay-title {
        font-size: 1.5rem;
    }

    .modal-overlay-content {
        padding: 50px 20px 25px;
    }
}

/* Overlay */
.custom-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.custom-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Popup Box */
.custom-popup-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 30px;
    width: 500px;
    max-width: 95%;
    text-align: center;
    color: white;
    transform: scale(0.9);
    transition: 0.3s ease;
}

.custom-popup-overlay.active .custom-popup-box {
    transform: scale(1);
}

/* Premium Button */
.property-btn {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    border: 2px solid white;
    font-weight: 600;
    margin-bottom: 12px;
    transition: 0.3s;
    background: #52a0e7;
    color: #fff;
}

.property-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Contact Button */
.contact-btn {
    background: #31BB32;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.contact-btn:hover {
    background: black;
    border: 5px solid white;
    color: #fff;
}

.property-section {
    overflow: hidden;
}

.all-properties-slider {
    overflow: visible;
    padding: 4px 0 14px;
}

.all-properties-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.all-properties-slider .swiper-slide {
    height: auto;
}

.all-properties-slider .destination-card-items {
    height: 100%;
}

.property-category-row {
    margin-top: 70px;
    margin-top: 70px;
}

.property-category-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.property-category-subtitle {
    display: inline-block;
    color: var(--theme);
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 6px;
}

.property-category-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.02em;
}

.property-category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--theme);
    font-weight: 800;
    white-space: nowrap;
    transition: .25s ease;
}

.property-category-link:hover {
    color: #111827;
    transform: translateX(4px);
}

.property-category-grid .destination-card-items {
    height: 100%;
}

.all-properties-slider .destination-thumb,
.property-category-grid .destination-thumb {
    height: 220px;
    overflow: hidden;
}

.all-properties-slider .destination-thumb img,
.property-category-grid .destination-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all-properties-slider .destination-content h4,
.property-category-grid .destination-content h4 {
    min-height: 66px;
    display: flex;
    align-items: flex-start;
}

.all-properties-slider .destination-content h4 a,
.property-category-grid .destination-content h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


@media (max-width: 991.98px) {
    .property-category-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .property-category-title {
        font-size: 28px;
    }

    .all-properties-slider .destination-thumb,
    .property-category-grid .destination-thumb {
        height: 210px;
    }
}

@media (max-width: 575.98px) {
    .all-properties-slider {
        overflow: hidden;
    }

    .property-category-title {
        font-size: 24px;
    }
}

.property-section {
    overflow: hidden;
}

.featured-property-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(49, 120, 161, .12), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.featured-properties-slider {
    overflow: visible;
    padding: 4px 0 14px;
}

.featured-properties-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.featured-properties-slider .swiper-slide {
    height: auto;
}

.featured-properties-slider .destination-card-items,
.property-category-grid .destination-card-items {
    height: 100%;
}

.featured-properties-slider .destination-card-items {
    position: relative;
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 14px 35px rgba(2, 6, 23, .08);
}

.featured-properties-slider .destination-thumb,
.property-category-grid .destination-thumb {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.featured-properties-slider .destination-thumb img,
.property-category-grid .destination-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-properties-slider .destination-content h4,
.property-category-grid .destination-content h4 {
    min-height: 66px;
    display: flex;
    align-items: flex-start;
}

.featured-properties-slider .destination-content h4 a,
.property-category-grid .destination-content h4 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .12);
}

.featured-badge--category {
    background: rgba(255, 255, 255, .92);
    color: #111827;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.featured-badge--featured {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #111827;
}

.featured-properties-slider .swiper-slide {
    height: auto;
    display: flex;
}

.featured-properties-slider .swiper-slide>.bp-clean-card {
    width: 100%;
}

.property-category-grid>[class*="col-"] {
    display: flex;
}

.property-category-grid .bp-clean-card {
    width: 100%;
}

.bp-clean-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .07);
    box-shadow: 0 16px 38px rgba(15, 23, 42, .08);
    display: flex;
    flex-direction: column;
    transition: .25s ease;
}

.bp-clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .14);
}

.bp-clean-thumb {
    position: relative;
    display: block;
    height: 245px;
    overflow: hidden;
    background: #f1f5f9;
}

.bp-clean-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.bp-clean-card:hover .bp-clean-thumb img {
    transform: scale(1.045);
}

.bp-clean-top-badges {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 3;
}

.bp-clean-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bp-clean-badge--featured {
    background: rgba(255, 255, 255, .94);
    color: #2563eb;
}

.bp-clean-badge--category {
    background: rgba(49, 120, 161, .94);
    color: #ffffff;
}

.bp-clean-status {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 950;
    z-index: 3;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .16);
}

.bp-clean-status--available {
    background: #16a34a;
    color: #fff;
}

.bp-clean-status--reserved {
    background: #facc15;
    color: #111827;
}

.bp-clean-status--sold {
    background: #ef4444;
    color: #fff;
}

.bp-clean-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bp-clean-title {
    font-size: 21px;
    font-weight: 950;
    line-height: 1.35;
    margin-bottom: 10px;
}

.bp-clean-title a {
    color: #020617;
    text-decoration: none;
}

.bp-clean-title a:hover {
    color: #52a0e7;
}

.bp-clean-location {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #8a8f98;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
    margin-bottom: 12px;
}

.bp-clean-location i {
    margin-top: 3px;
    color: #6b7280;
    font-size: 14px;
}

.bp-clean-desc {
    color: #64748b;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 650;
    margin-bottom: 16px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 44px;
}

.bp-clean-specs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 18px;
}

.bp-clean-spec {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #020617;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.bp-clean-spec i {
    font-size: 18px;
    color: #020617;
}

.bp-clean-spec strong {
    font-size: 14px;
    font-weight: 950;
    color: #020617;
}

.bp-clean-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    border-radius: 999px;
    background: #52a0e7;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
    text-decoration: none;
    transition: .22s ease;
    box-shadow: 0 14px 28px rgba(49, 120, 161, .24);
}

.bp-clean-btn:hover {
    background: #4791d6;
    color: #ffffff;
    transform: translateY(-2px);
}

.bp-clean-btn i {
    font-size: 13px;
}

@media (max-width: 575.98px) {
    .bp-clean-thumb {
        height: 225px;
    }

    .bp-clean-title {
        font-size: 18px;
    }

    .bp-clean-specs {
        gap: 11px;
    }

    .bp-clean-spec {
        font-size: 13px;
    }

    .bp-clean-spec i {
        font-size: 16px;
    }
}

.home-seo-links-section {
    background: #f8fafc;
    padding: 92px 0 !important;
    min-height: 620px;
    display: flex;
    align-items: center;
}

.home-seo-links-section .container {
    width: 100%;
}

.home-seo-panel {
    max-width: 1180px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 28px;
    padding: 44px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
}

.home-seo-head {
    max-width: 820px;
    margin-bottom: 26px;
}

.home-seo-head span {
    display: inline-flex;
    color: #52a0e7;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.home-seo-head h2 {
    color: #020617;
    font-size: 32px;
    font-weight: 950;
    line-height: 1.2;
    margin-bottom: 10px;
}

.home-seo-head p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 700;
    margin: 0;
}

.home-seo-link-group {
    margin-top: 22px;
}

.home-seo-link-group h3 {
    color: #020617;
    font-size: 18px;
    font-weight: 950;
    margin-bottom: 12px;
}

.home-seo-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-seo-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 15px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    color: #0f172a;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: .22s ease;
}

.home-seo-chip:hover {
    background: #52a0e7;
    color: #ffffff;
    transform: translateY(-2px);
}

.home-faq-section {
    background: #ffffff;
}

.home-faq-card {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 28px;
    padding: 34px;
}

.home-faq-head {
    max-width: 780px;
    margin-bottom: 26px;
}

.home-faq-head span {
    display: inline-flex;
    color: #52a0e7;
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.home-faq-head h2 {
    color: #020617;
    font-size: 32px;
    font-weight: 950;
    line-height: 1.2;
    margin-bottom: 10px;
}

.home-faq-head p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 700;
    margin: 0;
}

.home-faq-grid {
    display: grid;
    gap: 14px;
}

.home-faq-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 18px;
    padding: 20px 22px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .045);
}

.home-faq-item h3 {
    color: #020617;
    font-size: 17px;
    font-weight: 950;
    margin-bottom: 8px;
}

.home-faq-item p {
    color: #475569;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 575.98px) {

    .home-seo-panel,
    .home-faq-card {
        padding: 24px;
        border-radius: 24px;
    }

    .home-seo-head h2,
    .home-faq-head h2 {
        font-size: 25px;
    }

    .home-seo-chip {
        width: 100%;
        justify-content: space-between;
    }

    .home-seo-links-section {
        min-height: auto;
        padding: 56px 0 !important;
    }
}

/* ==========================================================================
           V10 MODERN MARKETPLACE UI LAYER (COLOR CORRECTED)
           ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* MENGGUNAKAN WARNA BARU */
    --v10-primary: #81bdf1;
    --v10-primary-hover: #6aaee8;
    --v10-primary-light: rgba(129, 189, 241, 0.1);
}

.v10-text-primary {
    color: var(--v10-primary) !important;
}

.v10-bg-light {
    background-color: #f8fafc;
}

/* Global V10 typography */
.v10-hero,
.v10-stats-section,
.v10-kategori-section,
.v10-property-section,
.v10-wcu-section,
.v10-cta-wrapper,
.v10-gallery-section,
.v10-article-section,
.v10-testi-section,
.v10-about-section,
.v10-faq-section {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    color: #1e293b;
}

/* Typography Hierarchy */
.v10-section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.v10-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--v10-primary-light);
    color: var(--v10-primary);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(49, 120, 161, 0.2);
}

.v10-link-arrow {
    color: var(--v10-primary);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.v10-link-arrow:hover {
    color: var(--v10-primary-hover);
    letter-spacing: 0.5px;
}

.v10-rounded {
    border-radius: 20px !important;
}

/* V10 Hero */
.v10-hero {
    position: relative;
    padding: 140px 0 200px;
    background-size: cover;
    background-position: center;
}

.v10-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.6) 100%);
    z-index: 1;
}

.v10-hero-container {
    position: relative;
    z-index: 2;
}

.v10-hero-title {
    color: #fff !important;
    font-size: 3.5rem !important;
    font-weight: 800 !important;
    line-height: 1.2;
    margin-bottom: 20px !important;
}

.v10-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* V10 Search Form */
.v10-search-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 10px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.v10-sf-group {
    padding: 12px 20px;
}

.v10-sf-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.v10-sf-control {
    border: none !important;
    padding: 0 !important;
    background: transparent !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    box-shadow: none !important;
    cursor: pointer;
}

.v10-border-left {
    border-left: 1px solid #e2e8f0;
}

.v10-search-btn {
    background: var(--v10-primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    height: 56px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.v10-search-btn:hover {
    background: var(--v10-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px var(--v10-primary-light);
    color: #fff;
}

@media(max-width: 768px) {
    .v10-hero {
        padding: 120px 0 150px;
    }

    .v10-hero-title {
        font-size: 2.2rem !important;
    }

    .v10-border-left {
        border-left: none;
        border-top: 1px solid #e2e8f0;
    }
}

/* V10 Stats Card */
.v10-stats-section {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.v10-stats-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
}

.v10-stat-item h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 15px 0 5px;
}

.v10-stat-item p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

.v10-stat-icon {
    width: 60px;
    height: 60px;
    background: var(--v10-primary-light);
    color: var(--v10-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: transform 0.3s;
}

.v10-stat-item:hover .v10-stat-icon {
    transform: rotate(10deg) scale(1.1);
}

.v10-stat-border {
    border-left: 1px dashed #e2e8f0;
    border-right: 1px dashed #e2e8f0;
}

@media(max-width: 768px) {
    .v10-stat-border {
        border: none;
        border-top: 1px dashed #e2e8f0;
        border-bottom: 1px dashed #e2e8f0;
        padding: 20px 0;
    }
}

/* V10 Category Cards */
.v10-cat-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.v10-cat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    transition: background 0.3s;
}

.v10-cat-overlay h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 5px;
    transition: transform 0.3s;
}

.v10-cat-overlay span {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.v10-cat-card:hover .v10-cat-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, var(--v10-primary-light) 100%);
}

.v10-cat-card:hover h4 {
    transform: translateY(-5px);
    color: #fff;
}

.v10-cat-card:hover span {
    opacity: 1;
    transform: translateY(0);
    color: #fff;
}

/* V10 PREMIUM PROPERTY CARD */
.v10-property-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.v10-property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.v10-pc-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.v10-pc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.v10-property-card:hover .v10-pc-img {
    transform: scale(1.08);
}

.v10-pc-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.v10-badge-type {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.v10-badge-sold {
    background: #ef4444;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.v10-pc-price {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 10px 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.2rem;
    color: #0f172a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.v10-pc-period {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

.v10-pc-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.v10-pc-location {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.v10-pc-location i {
    color: #ef4444;
}

.v10-pc-title {
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
}

.v10-pc-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.3s;
}

.v10-pc-title a:hover {
    color: var(--v10-primary);
}

.v10-pc-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.v10-pcf-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
}

.v10-pcf-item i {
    color: #94a3b8;
    font-size: 1rem;
}

.v10-pc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.v10-pc-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.v10-pc-avatar {
    width: 32px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
}

.v10-pc-agent span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
}

.v10-pc-btn {
    background: #22c55e;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(34, 197, 94, 0.2);
}

.v10-pc-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    color: #fff;
}

.v10-btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #0f172a;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.v10-btn-outline:hover {
    border-color: var(--v10-primary);
    color: var(--v10-primary);
}

/* V10 WCU Split Layout */
.v10-wcu-img-wrapper {
    position: relative;
}

.v10-wcu-floating-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.v10-wcu-icon-box {
    width: 45px;
    height: 45px;
    background: var(--v10-primary-light);
    color: var(--v10-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* V10 CTA */
.v10-cta-box {
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    padding: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.v10-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--v10-primary) 0%, rgba(49, 120, 161, 0.8) 100%);
}

.v10-btn-white {
    display: inline-block;
    background: #fff;
    color: var(--v10-primary);
    padding: 16px 32px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.v10-btn-white:hover {
    transform: translateY(-3px);
    color: var(--v10-primary-hover);
}

/* V10 Gallery Premium */
.v10-gallery-premium {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.v10-gallery-premium img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.v10-gallery-hover-premium {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    color: #fff;
    font-size: 2.5rem;
    backdrop-filter: blur(2px);
    transform: scale(0.9);
}

.v10-gallery-premium:hover img {
    transform: scale(1.1);
}

.v10-gallery-premium:hover .v10-gallery-hover-premium {
    opacity: 1;
    transform: scale(1);
}

/* V10 Article Horizontal */
.v10-article-card-hz {
    display: block;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
    height: 100%;
}

.v10-article-card-hz:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.v10-ac-img {
    overflow: hidden;
}

.v10-ac-img img {
    transition: transform 0.5s ease;
}

.v10-article-card-hz:hover .v10-ac-img img {
    transform: scale(1.05);
}

.v10-ac-body {
    padding: 25px 20px;
}

.v10-ac-date {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--v10-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.v10-ac-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    line-height: 1.4;
}

.v10-ac-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* V10 Testimonial Premium */
.v10-testi-premium-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.v10-testi-author-info {
    display: flex;
    flex-direction: column;
}

.v10-testi-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--v10-primary-light);
}

.v10-testi-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.v10-testi-text {
    font-size: 1.05rem;
    color: #475569;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.v10-testi-author-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px dashed #e2e8f0;
}

.v10-testi-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.v10-quote-watermark {
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-size: 8rem;
    color: #f1f5f9;
    z-index: 0;
    opacity: 0.5;
    transition: transform 0.3s;
}

.v10-testi-premium-card:hover .v10-quote-watermark {
    transform: rotate(-10deg) scale(1.1);
    color: var(--v10-primary-light);
}

.v10-testi-slider {
    padding-bottom: 10px;
    overflow: hidden;
    margin: 0 -15px;
    padding: 15px;
}

.v10-testi-slider .swiper-slide {
    height: auto;
    display: flex;
}

.v10-testi-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.v10-testi-pagination .swiper-pagination-bullet-active {
    width: 35px;
    background: var(--v10-primary);
    border-radius: 8px;
}

/* V10 FAQ */
.v10-accordion-premium .accordion-item {
    border: none;
    background: #fff;
    margin-bottom: 15px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.v10-accordion-premium .accordion-button {
    background: #fff !important;
    color: #0f172a;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 25px;
    box-shadow: none !important;
    border-radius: 16px !important;
    transition: all 0.3s;
}

.v10-accordion-premium .accordion-button:not(.collapsed) {
    color: var(--v10-primary);
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.v10-accordion-premium .accordion-body {
    padding: 0 25px 25px 25px;
    color: #64748b;
    line-height: 1.8;
    background: #fff;
}

.v10-accordion-premium .accordion-button::after {
    background-size: 1.2rem;
}