/* Minimal fix for horizontal scrolling in Chrome/Edge */
/* Only targets the specific elements causing the issue */

/* Fix home slider caption content - the main culprit */
#home-slider .caption-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix stars effect overflow */
.stars {
    max-width: 100vw !important;
    overflow: hidden !important;
}

/* Fix contact form center */
.contact-form-center {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}


