/* Reset-like box sizing for our class container */
.hh-0ef3c304-hero-section * {
    box-sizing: border-box;
}

/* Base Hero Background Style */
.hh-0ef3c304-hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EE 100%);
    padding: 100px 0;
    overflow: hidden;
}

/* Subtle architectural grid texture */
.hh-0ef3c304-grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: 
        linear-gradient(to right, #102523 1px, transparent 1px),
        linear-gradient(to bottom, #102523 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Flex Container Layout - Adjusted for true edge-to-edge spacing */
.hh-0ef3c304-container {
    width: 100%;
    max-width: 100% !important; /* Forces edge-to-edge */
    padding: 0 5%; /* Generous margin on outer edges */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Left Side Layout - Align fully to left */
.hh-0ef3c304-left {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: left;
}

.hh-0ef3c304-eyebrow {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    color: #20BFC1;
}

.hh-0ef3c304-heading {
    font-family: 'Playfair Display', 'Helvetica Neue', serif;
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    color: #102523;
    margin: 0 0 24px 0;
}

.hh-0ef3c304-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: #102523;
    opacity: 0.85;
    margin-bottom: 40px;
}

/* Action Buttons */
.hh-0ef3c304-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.hh-0ef3c304-btn-primary, 
.hh-0ef3c304-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 36px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hh-0ef3c304-btn-primary {
    background-color: #F5A623;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.25);
}

.hh-0ef3c304-btn-primary:hover {
    background-color: #102523;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 37, 35, 0.15);
}

.hh-0ef3c304-btn-secondary {
    background-color: transparent;
    border: 2px solid #102523;
    color: #102523;
}

.hh-0ef3c304-btn-secondary:hover {
    border-color: #20BFC1;
    color: #20BFC1;
    transform: translateY(-2px);
}

/* Trust Bar */
.hh-0ef3c304-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    border-top: 1px solid rgba(16, 37, 35, 0.1);
    padding-top: 32px;
}

.hh-0ef3c304-trust-item {
    font-size: 13px;
    font-weight: 600;
    color: #102523;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hh-0ef3c304-trust-item span {
    color: #20BFC1;
    font-weight: bold;
}

/* Right Side - Immersive image on the edge */
.hh-0ef3c304-right {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    justify-content: flex-end;
}

.hh-0ef3c304-img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(16, 37, 35, 0.15);
    background: #EAEAEA;
    overflow: visible;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hh-0ef3c304-hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    animation: hhFloatingImg 6s ease-in-out infinite;
}

/* Glassmorphism Floating Info Badge */
.hh-0ef3c304-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(16, 37, 35, 0.08);
    max-width: 250px;
    animation: hhFloatingBadge 5s ease-in-out infinite alternate;
    z-index: 10;
}

.hh-0ef3c304-badge-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #20BFC1;
    margin-bottom: 6px;
}

.hh-0ef3c304-badge-text {
    font-size: 14px;
    font-weight: 700;
    color: #102523;
    line-height: 1.3;
}

/* Animations declarations */
@keyframes hhFloatingImg {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes hhFloatingBadge {
    0% { transform: translateY(0px) translateX(0px); }
    100% { transform: translateY(-8px) translateX(4px); }
}

/* Entrance Animations */
.hh-0ef3c304-animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hh-0ef3c304-animate-up.active {
    opacity: 1;
    transform: translateY(0);
}

.hh-0ef3c304-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hh-0ef3c304-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Delays for active classes */
.hh-0ef3c304-left .hh-0ef3c304-eyebrow.active { transition-delay: 0.1s; }
.hh-0ef3c304-left .hh-0ef3c304-heading.active { transition-delay: 0.2s; }
.hh-0ef3c304-left .hh-0ef3c304-paragraph.active { transition-delay: 0.35s; }
.hh-0ef3c304-left .hh-0ef3c304-actions.active { transition-delay: 0.5s; }
.hh-0ef3c304-left .hh-0ef3c304-trust-bar.active { transition-delay: 0.65s; }
.hh-0ef3c304-right.active { transition-delay: 0.3s; }

/* Responsive Media Queries */
@media screen and (max-width: 1024px) {
    .hh-0ef3c304-container {
        flex-direction: column-reverse;
        gap: 50px;
        padding: 0 5%;
    }
    
    .hh-0ef3c304-left {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hh-0ef3c304-right {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .hh-0ef3c304-hero-section {
        padding: 60px 0;
    }
    
    .hh-0ef3c304-heading {
        font-size: 38px;
    }
    
    .hh-0ef3c304-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .hh-0ef3c304-btn-primary, 
    .hh-0ef3c304-btn-secondary {
        width: 100%;
    }
    
    .hh-0ef3c304-badge {
        left: 20px;
        bottom: -20px;
    }
}
