/* Hero Section - Modern full-bleed with photo */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(135deg, rgba(10, 93, 84, 0.92) 0%, rgba(18, 124, 113, 0.75) 40%, rgba(18, 124, 113, 0.45) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 640px;
    padding: 0;
    text-align: left;
}

.hero-content::after {
    display: none;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    padding: 0;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -0.5px;
    animation: none;
}

.hero-accent {
    color: #FFD166;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    opacity: 1;
    animation: none;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #fff;
    color: #0A5D54;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.hero-cta:hover {
    background: #f1f3f4;
    color: #0A5D54;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.hero-cta svg {
    transition: transform 0.2s;
}

.hero-cta:hover svg {
    transform: translateX(3px);
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.hero-cta-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Hide elements from old layout */
.hero-background,
.hero-circle,
.hero-gradient {
    display: none;
}

/* Photo strip removed */
.photo-strip {
    display: none;
}

.hide-sp {
    display: inline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 75vh;
    }

    .hero-overlay {
        background:
            linear-gradient(135deg, rgba(10, 93, 84, 0.93) 0%, rgba(18, 124, 113, 0.85) 100%);
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hide-sp {
        display: none;
    }
}
