/* --------------------------------------------------
 * Carous Hero Widget Styles
 * -------------------------------------------------- */
.elementor-widget-carous_hero .carous-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.elementor-widget-carous_hero .carous-hero__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
}
.elementor-widget-carous_hero .carous-hero__content-wrap {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-content: flex-start;
}
.elementor-widget-carous_hero.carous-hero--layout-left .carous-hero__content-wrap {
    flex-direction: row;
}
.elementor-widget-carous_hero.carous-hero--layout-right .carous-hero__content-wrap {
    flex-direction: row-reverse;
}
.elementor-widget-carous_hero.carous-hero--layout-center .carous-hero__content-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.elementor-widget-carous_hero .carous-hero__image-wrap {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}
.elementor-widget-carous_hero .carous-hero__image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}
.elementor-widget-carous_hero .carous-hero__content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.elementor-widget-carous_hero.carous-hero--align-center .carous-hero__content {
    align-items: center;
    text-align: center;
}
.elementor-widget-carous_hero.carous-hero--align-right .carous-hero__content {
    align-items: flex-end;
    text-align: right;
}
.elementor-widget-carous_hero .carous-hero__title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 8px 0;
}
.elementor-widget-carous_hero .carous-hero__subtitle {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 18px;
}
.elementor-widget-carous_hero .carous-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 32px;
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.elementor-widget-carous_hero .carous-hero__button:hover {
    background: #fff;
    color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.elementor-widget-carous_hero .carous-hero__button-icon {
    font-size: 1.2em;
}
@media (max-width: 900px) {
    .elementor-widget-carous_hero .carous-hero__content-wrap {
        flex-direction: column !important;
        gap: 32px;
    }
    .elementor-widget-carous_hero .carous-hero__container {
        padding: 0 8px;
    }
}
@media (max-width: 600px) {
    .elementor-widget-carous_hero .carous-hero {
        min-height: 340px;
    }
    .elementor-widget-carous_hero .carous-hero__title {
        font-size: 2rem;
    }
    .elementor-widget-carous_hero .carous-hero__subtitle {
        font-size: 1rem;
    }
    .elementor-widget-carous_hero .carous-hero__button {
        padding: 10px 18px;
        font-size: 1rem;
    }
}

/* --------------------------------------------------
 * Carous Hero Widget Styles (continued)
 * -------------------------------------------------- */

/* Overlay styles for Carous Hero */
.elementor-widget-carous_hero .carous-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.2s;
}
.elementor-widget-carous_hero .carous-hero__container,
.elementor-widget-carous_hero .carous-hero__content-wrap,
.elementor-widget-carous_hero .carous-hero__content {
    position: relative;
    z-index: 2;
}
