.property-punta {
    padding: 60px 0;
}

.properyt-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 35px;
}

.property-box .boxes {
    background: #fff;
    border-radius: 28px;
    padding: 40px 25px;
    border: 1px solid var(--bs-orange);
    transition: 0.35s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.property-box .boxes::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.05), transparent);
    opacity: 0;
    transition: 0.35s ease;
}

.property-box .boxes:hover {
    transform: translateY(-8px);
    border-color: var(--dark);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.property-box .boxes:hover::before {
    opacity: 1;
}

.property-box .boxes img {
    width: 60px;
}

.property-box .boxes .prop-name {
    color: var(--orange-color);
    margin: 6px 0;
}









.featured-property {
    padding: 5px 0 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.property-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
    transition: 0.4s ease;

    border: 1px solid #e2e8f0;
}

.property-card:hover {
    /* transform: translateY(-10px); */
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.14);
}

.property-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.5s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.2);
}

.property-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--orange-color);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.property-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.property-overlay span {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
}

.property-overlay span:hover {
    background: var(--dark);
    color: #fff;
}

.property-content {
    padding: 15px;
}

.property-price-row h3 {
    font-size: 27px;
    font-weight: 700;
    color: var(--orange-color);
    margin: 0;
    margin-bottom: 10px;
}

.property-content h2 {
    font-size: 19px;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 18px;
    font-weight: 700;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #64748b;
    margin-bottom: 24px;
}

.property-location i {
    color: var(--orange-color);
}

.property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 7px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 24px;
    color: #f59e0b;
    margin-bottom: 10px;
    display: block;
}

.feature-item svg {
    font-size: 24px;
    color: #f59e0b;
    margin: 0 auto;
    margin-bottom: 10px !important;
    display: block;

}

.feature-item span {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.property-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 55px;
    border-radius: 14px;
    background: var(--orange-color);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.property-btn:hover {
    background: #0f172a;
    color: #fff;
}


.rental-section {
    padding: 40px 0;
    background: #f8fafc;
}

.rental-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.rental-content p {
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
    margin-bottom: 8px;
}



.rental-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    height: 58px;
    padding: 0 30px;
    border-radius: 14px;
    background: var(--orange-color);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 18px;
}

.rental-btn:hover {
    background: var(--dark);
    color: #fff;
}

.rental-image {
    position: relative;
}

.image-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
    position: relative;
}

.image-card img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    transition: 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.property-tags {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.property-tags span {
    background: var(--dark);
    backdrop-filter: blur(10px);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.property-tags span:hover {
    background: var(--orange-color);
    transform: translateX(5px);
}

/* Responsive */

/* Custom Reviews Section */
.custom-reviews-section {
    padding: 80px 0;
    background: #ffffff;
}

.custom-section-title {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
}

.custom-reviews-widget {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.custom-reviews-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    justify-content: center;
    padding-top: 0;
}


.custom-reviews-summary h4 {
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.custom-reviews-summary .stars {
    color: var(--orange-color-light);
    font-size: 33px;
    letter-spacing: 2px;
    margin-bottom: 0px;
}

.custom-reviews-summary p {
    font-size: 17px;
    color: var(--dark);
    margin-bottom: 9px;
}

.google-logo-wrapper img {
    width: 104px;
}

.custom-reviews-list-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.custom-review-nav-arrow {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bs-body-bg);
    z-index: 2;
}

.custom-reviews-list {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.custom-reviews-list::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.custom-review-card {
    background: var(--dark);
    border-radius: 8px;
    padding: 25px;
    min-width: 320px;
    box-shadow: none;
}

.custom-reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.custom-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange-color-light);
    color: var(--bs-body-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.custom-reviewer-name-date {
    line-height: 1.2;
}

.custom-reviewer-name-date h6 {
    margin: 0 0 3px 0;
    font-weight: 700;
    font-size: 15px;
    color: var(--bs-body-bg);
}

.custom-reviewer-name-date span {
    font-size: 12px;
    color: #94a3b8;
}

.google-g-icon {
    width: 18px;
    margin-left: auto;
}

.custom-review-card .stars {
    color: var(--orange-color-light);
    font-size: 18px;
    margin-bottom: 10px;
}

.custom-review-text {
    font-size: 14px;
    color: var(--bs-body-bg);
    line-height: 1.6;
    margin-bottom: 5px;
}

.custom-read-more {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: none;
}

.custom-btn-google-feedback {
    display: inline-block;
    background: var(--orange-color-light);
    color: var(--dark);
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}



/* Agents Section */
.custom-agents-section {
    background: #ffffff;
    /* padding: 80px 0; */
}

.custom-agents-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-agents-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.custom-join-agents-link {
    color: #475569;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 1px;
}

.custom-agent-profile {
    text-align: left;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 8px;
}

.custom-agent-img {
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 20px;
}

.custom-agent-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
}

.custom-agent-role {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 20px;
}

.custom-social-icons {
    display: flex;
    gap: 10px;
}

.custom-social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    color: white;
}

.social-fb {
    background: #3b5998;
}

.social-ig {
    background: #111111;
}

.social-in {
    background: #0077b5;
}

.social-yt {
    background: #ff0000;
}

/* Blog Section */
.custom-blog-section {
    background: #fcfaf9;
    padding: 80px 0;
}





.custom-blog-categories {
    display: flex;

    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.custom-blog-categories a {
    background: var(--orange-color-light);
    color: var(--bs-body-bg);
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1px;
}

.d-d {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 20px;
}


@media (max-width: 768px) {
    .properyt-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .featured-property {
        grid-template-columns: 1fr;
    }

    .property-card,
    .property-content,
    .property-features,
    .feature-item {
        min-width: 0;
        max-width: 100%;
    }

    .property-features {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .feature-item span {
        overflow-wrap: anywhere;
    }

    .custom-reviews-widget {
        flex-direction: column;
        overflow: hidden;
    }

    .custom-review-card {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .properyt-row {
        grid-template-columns: 1fr;
    }

    .property-features {
        grid-template-columns: 1fr;
    }
}
