
.rh-page-heading{
    font-size: 24px;
}
.developer-description-content h3{

    font-size: 1.8rem;
}

.rh-ultra-form h3{
    margin-top: 20px;
    text-align: center;
}

p.rh_prop_card__price_ultra .property-current-price, p.rh_prop_card__price_ultra .ere-price-display{
    font-weight:800;
}

.rh-page-container{
    margin-top: 0rem;
}

.developer-meta {
    font-size: 16px;
    color: #555;
    margin-bottom: 0px;
}

.rh-properties-card-meta-ultra{
    justify-content: space-between;
}

/* Additional responsiveness for smaller screens */
@media (max-width: 768px) {
    .rh-contact-icon {
        font-size: 18px; /* Slightly smaller icons */
        width: 36px;
        height: 36px;
    }
    .rh-contact-icons {
        gap: 10px; /* Reduce spacing between icons */
    }
    .rh-page-container.container{
        margin-top: 2rem;
        width: 90%;
        padding: 0px;
    }
    .col-8, .rh-ultra-page-content{
        width: 100;
        padding: 0px;
    }
    .rh-ultra-form{
        width: 100% !important;
        margin-bottom: 2rem !important;
    }
}

.property-type-icon {
    display: inline-flex; /* Aligns SVG and text inline */
    align-items: center; /* Vertically centers content */
    margin-right: 10px; /* Spacing between icons */
    font-size: 14px; /* Adjusts text size */
}

.property-type-icon svg {
    width: 20px; /* Adjusts the width of the SVG */
    height: 20px; /* Adjusts the height of the SVG */
    margin-right: 5px; /* Spacing between SVG and text */
    fill: var(--rh-global-color-primary);
}

.property-types {
    font-size: 14px; /* Adjusts overall font size */
    color: #333; /* Default text color */
    margin-top: 10px; /* Adds spacing above the property types */
}

.property-types span {
    margin-right: 15px; /* Adds spacing between property type items */
    white-space: nowrap; /* Prevents text wrapping */
}

.property-types span:last-child {
    margin-right: 0; /* Removes margin from the last item */
}

.rh-ultra-media-count{
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

.rh-contact-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.rh-contact-icon {
    color: var(--rh-global-color-primary);
    font-size: 20px; /* Icon size */
    text-decoration: none; /* Remove underline */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Icon container size */
    height: 40px; /* Icon container size */
    background-color: #fff; /* Light background for icons */
    border-radius: 50%; /* Circular icons */
    transition: all 0.3s ease; /* Smooth hover effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.rh-contact-icon:hover {
    color: #fff; /* Change icon color on hover */
    background-color: var(--rh-global-color-primary); 
    transform: translateY(-3px); /* Lift effect on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
}

/* Additional responsiveness for smaller screens */
@media (max-width: 768px) {
    .rh-contact-icon {
        font-size: 18px; /* Slightly smaller icons */
        width: 36px;
        height: 36px;
    }
    .rh-contact-icons {
        gap: 10px; /* Reduce spacing between icons */
    }
}

.property-types {
    font-size: 13px;
    color: rgb(100, 100, 100);
    margin-inline-end: 5px;
    font-weight: bold;
}

#wpforms-submit-5019 {
    width: 100%;
}

.rh-ultra-form {
    width: 550px;
    margin: 0 auto;
}

.developer-header-wrapper {
    margin-bottom: 2.5rem;
}

.developer-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.developer-featured-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.developer-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.developer-info {
    flex-grow: 1;
}

.developer-name {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.developer-description {
    margin-top: 20px;
}

.developer-description-content {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Main Content Area Width */
.col-8,
.rh-ultra-page-content {
    width: 100%;
}

/* Compound Grid Styling */
.compound-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Compound Card Styling */
.compound-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.compound-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.compound-card-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Compound Details Styling */
.compound-card-details {
    padding: 15px;
}

.compound-title {
    font-size: 18px;
    margin: 0 0 10px;
}

.compound-location {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.compound-price {
    font-weight: bold;
    color: #007bff;
}

/* Styles for the buttons */
.compound-card-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.button-container a {
    text-decoration: none;
}

.button-container button {
    background-color: #1E4164;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-container .whatsapp-button {
    background-color: #25D366; /* WhatsApp green color */
}

.button-container button svg {
    width: 20px;
    height: 20px;
}

.button-container button:hover {
    opacity: 0.8;
}