/* ===== HERO SECTION STYLES ===== */
.unq-hero {
    background: linear-gradient(135deg, #f0f9f0 0%, #e6f4e6 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.unq-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.05) 0%, rgba(60, 179, 113, 0.05) 100%);
    top: -300px;
    right: -200px;
    z-index: 0;
}

.unq-hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(34, 139, 34, 0.03) 0%, rgba(50, 205, 50, 0.03) 100%);
    bottom: -200px;
    left: -150px;
    z-index: 0;
}

.unq-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.unq-hero-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Text Column */
.unq-hero-text-column {
    flex: 1;
}

.unq-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    animation: unq-pulse 2s infinite;
    letter-spacing: 0.5px;
}

@keyframes unq-pulse {
    0% { box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(46, 139, 87, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3); }
}

.unq-hero-badge-icon {
    animation: unq-spin 3s linear infinite;
}

@keyframes unq-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.unq-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 800;
}

.unq-hero-highlight {
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    font-weight: 900;
}

.unq-hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2E8B57, #3CB371);
    border-radius: 2px;
    opacity: 0.3;
}

.unq-hero-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 90%;
    font-weight: 500;
}

/* Countdown Timer */
.unq-hero-countdown {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 35px;
    border: 1px solid rgba(46, 139, 87, 0.1);
}

.unq-hero-countdown-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.unq-hero-countdown-icon {
    color: #2E8B57;
    font-size: 18px;
}

.unq-hero-countdown-title {
    font-weight: 700;
    color: #2d3748;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.unq-hero-countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.unq-hero-countdown-item {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px 15px;
    border-radius: 12px;
    min-width: 120px;
    border: 2px solid rgba(46, 139, 87, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.unq-hero-countdown-value {
    font-size: 48px;
    font-weight: 900;
    color: #2E8B57;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.unq-hero-countdown-label {
    font-size: 14px;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    font-weight: 700;
}

.unq-hero-countdown-separator {
    font-size: 36px;
    font-weight: 900;
    color: #2E8B57;
    margin: 0 5px;
    padding-bottom: 15px;
}

/* Blinking effect for countdown note */
.unq-hero-countdown-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 15px;
    color: #e53e3e;
    background: rgba(229, 62, 62, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 15px;
    font-weight: 700;
    text-align: center;
    border: 2px solid rgba(229, 62, 62, 0.3);
}

.unq-blink-icon {
    animation: unq-blink 1s infinite;
}

.unq-blink-text {
    animation: unq-blink 1s infinite;
}

@keyframes unq-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Action Button */
.unq-webinar-action {
    text-align: center;
    margin-bottom: 35px;
}

.unq-webinar-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
}

.unq-webinar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(46, 139, 87, 0.4);
    color: white;
}

.unq-cta-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.unq-arrow-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.unq-webinar-cta:hover .unq-arrow-icon {
    transform: translateX(5px);
}

/* Trust Indicators */
.unq-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 500px;
}

.unq-hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #4a5568;
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(46, 139, 87, 0.1);
}

.unq-hero-trust-icon {
    color: #2E8B57;
    font-size: 18px;
}

/* Video Column */
.unq-hero-video-column {
    flex: 1;
}

.unq-hero-video-container {
    position: relative;
}

.unq-hero-video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    background: #000;
}

/* Video Placeholder */
.unq-hero-video-placeholder {
    display: block;
    cursor: pointer;
}

.unq-hero-video-thumbnail {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.unq-hero-video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.unq-hero-video-thumbnail:hover .unq-hero-video-thumbnail-img {
    transform: scale(1.05);
}

.unq-hero-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 2;
}

.unq-hero-video-play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, #267349, #2E8B57);
}

.unq-hero-video-duration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

.unq-hero-video-auto-label {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(46, 139, 87, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}

/* Video Embed */
.unq-hero-video-embed {
    width: 100%;
    position: relative;
}

.unq-video-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.unq-video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.unq-hero-video-playing-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(46, 139, 87, 0.9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Video Features */
.unq-hero-video-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.unq-hero-video-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4a5568;
}

.unq-hero-video-feature-icon {
    color: #2E8B57;
}

/* Coach Card */
.unq-hero-coach-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2E8B57;
}

.unq-hero-coach-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2E8B57, #3CB371);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.unq-hero-coach-name {
    font-weight: 700;
    color: #1a1a2e;
    font-size: 18px;
    margin-bottom: 5px;
}

.unq-hero-coach-title {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 8px;
}

.unq-hero-coach-stats {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #718096;
}

.unq-hero-coach-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.unq-hero-coach-stat i {
    color: #2E8B57;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .unq-hero-content {
        gap: 40px;
    }
    
    .unq-hero-title {
        font-size: 36px;
    }
    
    .unq-webinar-cta {
        font-size: 16px;
        padding: 16px 35px;
    }
}

@media (max-width: 992px) {
    .unq-hero-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .unq-hero-text-column,
    .unq-hero-video-column {
        width: 100%;
    }
    
    .unq-hero-title {
        font-size: 32px;
    }
    
    .unq-hero-subtitle {
        max-width: 100%;
    }
    
    .unq-webinar-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .unq-hero {
        padding: 100px 0 60px;
    }
    
    .unq-hero-title {
        font-size: 28px;
    }
    
    .unq-hero-subtitle {
        font-size: 16px;
    }
    
    .unq-hero-countdown-item {
        min-width: 100px;
        padding: 12px 10px;
    }
    
    .unq-hero-countdown-value {
        font-size: 36px;
    }
    
    .unq-hero-countdown-label {
        font-size: 12px;
    }
    
    .unq-webinar-cta {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .unq-hero-video-thumbnail {
        height: 250px;
    }
    
    .unq-hero-video-play-btn {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .unq-hero-video-features {
        flex-direction: column;
    }
    
    .unq-hero-trust {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .unq-hero-title {
        font-size: 24px;
    }
    
    .unq-hero-countdown-item {
        min-width: 80px;
    }
    
    .unq-hero-countdown-value {
        font-size: 32px;
    }
    
    .unq-hero-countdown-separator {
        font-size: 28px;
    }
    
    .unq-webinar-cta {
        padding: 14px 25px;
        font-size: 15px;
        flex-direction: column;
        gap: 10px;
    }
    
    .unq-hero-video-thumbnail {
        height: 200px;
    }
    
    .unq-hero-video-play-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .unq-hero-video-duration,
    .unq-hero-video-auto-label {
        font-size: 11px;
        padding: 6px 10px;
    }
}