/* Amenities hover zoom effect */
.amenity-card .front {
    transition: transform 0.6s ease, filter 0.6s ease;
}

.amenity-card:hover .front {
    transform: scale(1.08);
    filter: brightness(1.08);
}

/* optional: smooth title color change */
.amenity-card span.fs-20 {
    transition: color 0.3s ease;
}

.amenity-card:hover span.fs-20 {
    color: var(--base-color, #a0875b); /* adjust to your theme base color */
}

/* Floor plan cards */
.villa-plan-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.villa-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.villa-plan-image {
    /* height: 260px; */
    height: 440px;
    background-size: cover;
    background-position: center;
}

/* Layout plan wrapper */
.layout-plan-wrapper {
    box-shadow: 0 18px 60px rgba(0,0,0,0.10);
}

.map-wrapper {
    width: 100%;
}

/* iframe fills its column on all screens */
.location-map-iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;   /* map height on mobile */
    display: block;
    border: 0;
}

/* optional: on large screens give a nicer height if you feel it's too tall */
@media (min-width: 992px) {
    .location-map-iframe {
        min-height: 400px;
    }
}



/* Location points with finger icon */
.location-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

.location-points li i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
    opacity: 0.9;
}

.location-points li span {
    display: inline-block; 
    font-size: 19px !important;
}

/* hover animation on each point */
.location-points li:hover i {
    transform: translateX(4px);
    color: #ffffff;
    opacity: 1;
}


.mycasa-footer-logo {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
    background-color: #ffffff;
}

.mycasa-footer-main {
    margin-top: 10px;
}

.mycasa-footer-list li {
    margin-bottom: 6px;
}

.mycasa-footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.mycasa-footer-links li {
    margin-bottom: 6px;
}

.mycasa-footer-links a {
    color: #6f6f6f;
    text-decoration: none;
    position: relative;
    padding-left: 0;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.mycasa-footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background-color: var(--base-color, #a0875b);
    transform: translateY(-50%);
    transition: width 0.25s ease;
}

.mycasa-footer-links a:hover {
    color: #111111;
    padding-left: 10px;
}

.mycasa-footer-links a:hover::before {
    width: 8px;
} 


/* About Page Code Css So */ 
/* ===== Life at MyCasa cards – base style ===== */
.life-card {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

/* Hover lift + subtle scale */
.life-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* Icon container: circular, centered */
.life-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    border: 1px solid rgba(160, 135, 91, 0.35); /* light border using base tone */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

/* Icon default color (base color) */
.life-icon i {
    color: var(--base-color, #A0875B); /* fallback if variable not defined */
    transition: all 0.3s ease;
}

/* Hover state – circle filled with base color, icon white */
.life-card:hover .life-icon {
    background-color: var(--base-color, #A0875B);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.life-card:hover .life-icon i {
    color: #ffffff;
}


