/* Hero Widget Styles */
.wt-hero-wrapper {
    width: 100%;
    position: relative;
    padding: 14vh 0 4rem 0;
    min-height: 80vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wt-hero-content-area {
    max-width: 800px;
    margin-bottom: 4rem;
}

/* Subheading */
.wt-hero-subheading {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a3a3a3;
    margin-bottom: 1.5rem;
}

.wt-hero-subheading::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 12px;
}

/* Heading */
.wt-hero-heading {
    font-size: 4.5rem;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    font-weight: normal;
}

.wt-hero-heading .highlight {
    color: var(--primary);
    font-style: italic;
}

/* Description */
.wt-hero-desc {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 0 2.5rem 0;
}

/* Buttons */
.wt-hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.wt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wt-btn-primary {
    background-color: var(--primary);
    color: #ffffff;
}

.wt-btn-primary:hover {
    background-color: #c9511e;
    color: #ffffff;
}

.wt-btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wt-btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

/* Stats */
.wt-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(255, 255, 255, 0.01);
}

.wt-stat-item {
    padding: 2rem 2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.wt-stat-item:last-child {
    border-right: none;
}

.wt-stat-number {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.wt-stat-label {
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666666;
}

/* Responsive */
@media (max-width: 1024px) {
    .wt-hero-wrapper {
        padding: 6rem 0 4rem 0;
    }
    .wt-hero-heading {
        font-size: 3.5rem;
    }
    .wt-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        border-bottom: none;
    }
    .wt-stat-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .wt-stat-item:nth-child(2n) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .wt-hero-heading {
        font-size: 2.5rem;
    }
    .wt-hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .wt-hero-buttons .wt-btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
}
