/* Lawn Care Widget Styles */

.lawn-care-widget-outer {
    position: relative;
}

.lawn-care-widget-wrapper {
    position: relative;
    overflow: visible;
}

.lawn-care-container {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
}
.lawn-care-bg-image img{
	width: 100%;
	border-radius: 30px !important
}
/* Main Heading Box */
.lawn-care-main-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    max-width: 620px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.lawn-care-heading {
    font-size: 54px;
    font-weight: normal;
    color: #1a1a1a;
    margin: 0 0 30px 0;
    font-family: var(--e-global-typography-84f6b22-font-family), Sans-serif;
    padding: 0;
}

.lawn-care-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
	font-family: var(--e-global-typography-84f6b22-font-family), Sans-serif;
}

/* Button Styles */
.lawn-care-button {
    display: inline-block;
    background-color: #0f9d58;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.lawn-care-button:hover {
    background-color: #0d8a4d;
}

/* Phone Styles */
.lawn-care-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.lawn-care-phone-icon {
    color: #0f9d58;
    font-size: 20px;
}

.lawn-care-phone:hover {
    opacity: 0.8;
}

/* Testimonial Wrapper - Positioning half in, half out */
.lawn-care-testimonial-wrapper {
    position: absolute;
    right: 20px;
    bottom: -20px;
    transform: translate(17%, 4%);
    z-index: 10;
}

/* Testimonial Box */
.lawn-care-testimonial {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 24px;
    width: 400px;
    min-height: 197px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.lawn-care-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.lawn-care-star {
    color: #ffa500;
    font-size: 20px;
}

.lawn-care-star.empty {
    color: #ddd;
}

.lawn-care-testimonial-text {
    font-size: 15px;
    /* line-height: 1.6; */
    color: #1a1a1a;
    margin: 0 0 20px 0;
    font-family: var(--e-global-typography-84f6b22-font-family), Sans-serif;
}

/* Customer Info */
.lawn-care-customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lawn-care-customer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.lawn-care-customer-details {
    flex: 1;
}

.lawn-care-customer-name {
    font-size: 16px;
    font-weight: 600;
    color: #0f9d58;
    margin: 0 0 3px 0;
    font-family: var(--e-global-typography-84f6b22-font-family), Sans-serif;
}

.lawn-care-customer-location {
    font-size: 14px;
    color: #666666;
    margin: 0;
    font-family: var(--e-global-typography-84f6b22-font-family), Sans-serif;
}

@media (min-width: 1053px) and (max-width: 1289px) {
  /* Your CSS here */
	.lawn-care-heading{
		font-size: 28px;
	}
}


/* Responsive Styles */
@media (max-width: 1200px){
	.lawn-care-testimonial-wrapper{
		right: 60px;
	}
}
@media (max-width: 1024px) {
	 .lawn-care-widget-outer {
        background-image: var(--lawn-bg);
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        padding: 30px 20px;
        border-radius: 30px;
        min-height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
		 flex-direction: column;
		 gap: 30px;
    }
	.lawn-care-bg-image{
		display: none;
	}
    .lawn-care-testimonial-wrapper {
        position: static;
        transform: none;
        right: auto;
        display: flex;
        justify-content: center;
    }
    
    .lawn-care-testimonial {
        width: 100%;
        max-width: 450px;
    }
	.lawn-care-container{
		position: static;
		display: flex;
		justify-content: center;
		padding: 0;
	}
}

@media (max-width: 768px) {
    .lawn-care-widget-wrapper {
        min-height: auto;
    }
    
    .lawn-care-main-box {
        padding: 30px 25px;
        max-width: 100%;
    }
    
    .lawn-care-heading {
        font-size: 32px;
    }
    
    .lawn-care-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .lawn-care-button {
        width: auto;
        text-align: center;
    }
    
    .lawn-care-testimonial {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .lawn-care-heading {
        font-size: 26px;
    }
    
    .lawn-care-button {
        padding: 12px 25px;
        font-size: 15px;
    }
    
    .lawn-care-phone {
        font-size: 16px;
    }
    
    .lawn-care-testimonial-wrapper {
        right: 10px;
        left: 10px;
    }
    
    .lawn-care-testimonial {
        width: auto;
    }
	.lawn-care-widget-outer{
		min-height: 400px;
	}
}
