/* ===== Luxury Villa Hero — fd67489f v2.0 ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Lato:wght@300;400;700&display=swap');

/* ===== FULL WIDTH HERO ===== */
.lvh-fd67489f-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    box-sizing: border-box;
}

/* Background Image */
.lvh-fd67489f-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    will-change: transform;
    filter: contrast(1.06) saturate(1.1) brightness(1.02);
}

/* Ken Burns animation */
.lvh-fd67489f-hero[data-kenburns="yes"] .lvh-fd67489f-bg {
    animation: lvh-fd67489f-kenburns 25s ease-in-out infinite alternate;
}

@keyframes lvh-fd67489f-kenburns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.06) translate(-0.5%, -0.5%); }
}

/* Overlay */
.lvh-fd67489f-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* ===== INNER CONTAINER — centered max-width ===== */
.lvh-fd67489f-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding: 140px 60px 140px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    box-sizing: border-box;
}

/* Content Block */
.lvh-fd67489f-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Accent Text */
.lvh-fd67489f-accent {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-style: italic;
    font-size: 1.55rem;
    font-weight: 400;
    color: #C9A15D;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

/* Headline */
.lvh-fd67489f-headline {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

/* Decorative Divider */
.lvh-fd67489f-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.lvh-fd67489f-divider-line {
    display: block;
    width: 60px;
    height: 1px;
    background: #C9A15D;
}

.lvh-fd67489f-divider-ornament {
    color: #C9A15D;
    font-size: 0.75rem;
    line-height: 1;
}

/* Subtitle */
.lvh-fd67489f-subtitle {
    font-family: 'Lato', 'Helvetica Neue', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #FAF8F3;
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 520px;
    letter-spacing: 0.015em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

/* ===== CTAs Container — FIXED side by side ===== */
.lvh-fd67489f-ctas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    position: relative;
    z-index: 5;
}

/* Primary CTA */
.lvh-fd67489f-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #7FCFE8;
    color: #143C46;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 40px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    z-index: 5;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(127,207,232,0.3);
}

.lvh-fd67489f-cta-primary:hover {
    background-color: #6bbdd6;
    box-shadow: 0 0 35px rgba(127,207,232,0.4), 0 6px 24px rgba(0,0,0,0.2);
    transform: translateY(-2px);
    color: #143C46;
    text-decoration: none;
}

.lvh-fd67489f-cta-arrow {
    transition: transform 0.3s ease;
    font-size: 1.1em;
}

.lvh-fd67489f-cta-primary:hover .lvh-fd67489f-cta-arrow {
    transform: translateX(4px);
}

/* Secondary CTA — VISIBLE outlined */
.lvh-fd67489f-cta-secondary {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #FAF8F3;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 40px;
    border: 2px solid #C9A15D;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    z-index: 5;
    white-space: nowrap;
}

.lvh-fd67489f-cta-secondary:hover {
    background-color: rgba(201, 161, 93, 0.18);
    box-shadow: 0 0 25px rgba(201, 161, 93, 0.2), 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    color: #FAF8F3;
    text-decoration: none;
}

/* ===== Trust Bar — integrated, positioned higher ===== */
.lvh-fd67489f-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: rgba(20, 60, 70, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 161, 93, 0.35);
    border-radius: 14px;
    padding: 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.08);
    margin-top: 50px;
    align-self: flex-start;
}

.lvh-fd67489f-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 28px;
    position: relative;
}

.lvh-fd67489f-trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(201, 161, 93, 0.3);
}

.lvh-fd67489f-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15D;
    font-size: 22px;
    flex-shrink: 0;
}

.lvh-fd67489f-trust-icon svg {
    width: 22px;
    height: 22px;
    fill: #C9A15D;
}

.lvh-fd67489f-trust-text {
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    color: #FAF8F3;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

/* Scroll Indicator */
.lvh-fd67489f-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: #C9A15D;
}

.lvh-fd67489f-scroll-ornament {
    font-size: 0.65rem;
    opacity: 0.8;
}

.lvh-fd67489f-scroll-arrow {
    font-size: 1.3rem;
    animation: lvh-fd67489f-bounce 2s ease-in-out infinite;
}

@keyframes lvh-fd67489f-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.6; }
}

/* ===== Animations ===== */
.lvh-fd67489f-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lvh-fd67489f-animate.lvh-fd67489f-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive — Tablet ===== */
@media (max-width: 1024px) {
    .lvh-fd67489f-inner {
        padding: 120px 40px 120px 50px;
        max-width: 100%;
    }

    .lvh-fd67489f-content {
        max-width: 560px;
    }

    .lvh-fd67489f-headline {
        font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    }

    .lvh-fd67489f-trust-bar {
        margin-top: 40px;
    }

    .lvh-fd67489f-trust-item {
        padding: 14px 22px;
    }

    .lvh-fd67489f-ctas {
        gap: 14px;
    }
}

/* ===== Responsive — Mobile ===== */
@media (max-width: 767px) {
    .lvh-fd67489f-hero {
        min-height: 100svh;
    }

    .lvh-fd67489f-inner {
        padding: 120px 24px 100px 24px;
        justify-content: center;
    }

    .lvh-fd67489f-content {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .lvh-fd67489f-accent {
        font-size: 1.25rem;
    }

    .lvh-fd67489f-headline {
        font-size: clamp(1.9rem, 7vw, 2.8rem);
    }

    .lvh-fd67489f-subtitle {
        font-size: 1.05rem;
        max-width: 100%;
    }

    .lvh-fd67489f-ctas {
        flex-direction: column;
        width: 100%;
        align-items: center;
        gap: 14px;
    }

    .lvh-fd67489f-cta-primary,
    .lvh-fd67489f-cta-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 16px 32px;
    }

    .lvh-fd67489f-trust-bar {
        flex-direction: column;
        border-radius: 12px;
        margin-top: 32px;
        align-self: stretch;
    }

    .lvh-fd67489f-trust-item:not(:last-child)::after {
        width: 60%;
        height: 1px;
        right: auto;
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
    }

    .lvh-fd67489f-scroll-indicator {
        bottom: 14px;
    }

    .lvh-fd67489f-divider {
        justify-content: center;
    }
}
