body.vc-travelfic-child .vc-component--hero {
	position: relative;
	overflow: hidden;
	border-radius: var(--vc-radius);
	padding: clamp(2.5rem, 4vw, 5rem);
	box-shadow: var(--vc-shadow-soft);
	background: var(--vc-surface);
}

.vc-component--hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 25% 15%, rgba(255, 255, 255, 0.65), transparent 40%),
		linear-gradient(135deg, rgba(6, 27, 58, 0.9), rgba(6, 27, 58, 0.3));
	z-index: 1;
}

.vc-hero__visual {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.vc-hero__visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	filter: saturate(1.1);
}

.vc-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 640px;
}

.vc-hero__inner h1,
.vc-hero__inner .vc-component__lead,
.vc-hero__inner .vc-eyebrow {
	color: #fff;
}

.vc-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.vc-hero__actions .vc-btn {
	min-width: 150px;
}

.vc-home-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(56px, 9vw, 96px) 0;
	color: #fff;
}

.vc-home-hero__visual {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(16, 36, 92, 0.35), rgba(84, 104, 175, 0.65)),
		url('../images/backgrounds/hero-caribbean-beach.webp') center/cover no-repeat;
	filter: saturate(1.05);
	z-index: 0;
	pointer-events: none;
}

.vc-home-hero__inner {
    position: relative;
    z-index: 1;
    display: block;
}
.vc-home-hero__copy {
    max-width: 620px;
}
.vc-home-hero__lead {
	max-width: 480px;
	margin-top: 16px;
	font-size: 18px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
}

.vc-home-hero__actions {
	margin-top: 24px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.vc-home-hero__cta {
	margin-top: 1.5rem;
}







@media (max-width: 768px) {
	.vc-component--hero {
		padding: 2.25rem;
	}

	.vc-hero__actions {
		flex-direction: column;
	}
}


.vc-home-search {
    margin: 32px auto 0;
    width: min(1180px, calc(100vw - 48px));
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 22px 50px rgba(16, 36, 92, 0.2);
    position: relative;
    z-index: 5;
    display: block;
}

.vc-search-bar__row {
    display: grid;
    grid-template-columns: minmax(240px, 1.6fr) minmax(230px, 1.35fr) minmax(210px, 1.2fr) minmax(160px, 0.8fr) auto;
    gap: 10px;
    align-items: stretch;
}

.vc-search-field {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(16, 36, 92, 0.14);
    border-radius: 12px;
    padding: 0 0.9rem;
    background: #fff;
    min-height: 64px;
}

.vc-search-field__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 36, 92, 0.08);
}

.vc-search-field__icon img {
    width: 20px;
    height: 20px;
    display: block;
}

.vc-search-field__input {
    flex: 1;
    border: 0;
    background: transparent;
    font-size: 1rem;
    font-weight: 600;
    color: var(--vc-navy);
    outline: none;
    min-width: 0;
    line-height: 1.2;
}

.vc-search-field__input::placeholder {
    color: rgba(16, 36, 92, 0.45);
    font-weight: 600;
}

.vc-search-field__date-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    flex: 1;
}

.vc-search-field__date-trigger {
    border: none;
    background: rgba(84, 104, 175, 0.15);
    border-radius: 12px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
}

.vc-search-field__date-trigger img {
    width: 18px;
    height: 18px;
    display: block;
}

.vc-search-field--travelers {
    position: relative;
    z-index: 20;
}

.vc-search-field__control {
    width: 100%;
    border: none;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    text-align: left;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.vc-search-field__summary {
    flex: 1;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

.vc-search-field__popover {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(16, 36, 92, 0.18);
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(16, 36, 92, 0.2);
    padding: 1rem 1.25rem;
    z-index: 10;
}

.vc-search-submit {
    min-height: 64px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0 1.25rem;
    border: none;
    background: #d80f2f;
    color: #fff;
    cursor: pointer;
}

.vc-search-submit__icon img {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) invert(1);
}

.vc-search-submit:focus-visible,
.vc-search-field__control:focus-visible,
.vc-search-field__date-trigger:focus-visible {
    outline: 3px solid rgba(84, 104, 175, 0.4);
    outline-offset: 2px;
}

.vc-home-hero__preferences {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vc-home-search__chip {
    border: 1px solid rgba(16, 36, 92, 0.2);
    border-radius: 12px;
    background: #f8f9ff;
    color: var(--vc-navy);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
}

.vc-home-search__chip-icon img {
    width: 18px;
    height: 18px;
    display: block;
}

.vc-home-search__chip[aria-pressed='true'],
.vc-home-search__chip.is-active {
    border-color: var(--vc-blue);
    background: rgba(84, 104, 175, 0.12);
}

@media (max-width: 1023px) {
    .vc-search-bar__row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vc-search-submit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .vc-search-bar__row {
        grid-template-columns: 1fr;
    }
    .vc-home-search {
        padding: 12px;
    }
    .vc-search-field {
        min-height: 56px;
    }
}
