.tkl-hero-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
}

.tkl-hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    z-index: 0;
}

.tkl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tkl-hero-container {
    margin: 0 auto;
    padding: 0 97px;
    position: relative;
    z-index: 10;
    width: 100%;
}

.tkl-hero-content {
    max-width: 800px;
}

.tkl-hero-subtitle {
    font-family: var(--tkl-font-heading);
    font-size: 22px;
    color: var(--tkl-gold);
    line-height: 40px;
}

.tkl-hero-content h1 {
    font-size: var(--tkl-h1-font-size);
    font-family: var(--tkl-h1-font-family);
    font-weight: var(--tkl-h1-font-weight);
    line-height: var(--tkl-h1-line-height);
    letter-spacing: var(--tkl-h1-letter-spacing);
    text-transform: var(--tkl-h1-text-transform);
    font-style: var(--tkl-h1-font-style);
    text-decoration: var(--tkl-h1-text-decoration);
    margin: 0;
}

.tkl-hero-content .description {
    margin-top: 28px;
}

.tkl-hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 26px;
}

.tkl-hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    font-family: var(--tkl-font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.tkl-hero-content .tkl-hero-buttons .popup-equiry-form-btn,
.tkl-hero-content .tkl-hero-buttons .btn.popup-equiry-form-btn:hover,
.tkl-hero-content .tkl-hero-buttons .btn--gold.popup-equiry-form-btn:focus,
.tkl-hero-content .tkl-hero-buttons .btn--gold.popup-equiry-form-btn:focus-visible {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    padding: 20px 30px;
}

.tkl-hero-badge {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 26px;
}

.tkl-hero-badge .rating {
    margin: 0;
}

.tkl-hero-badge .stars {
    color: var(--tkl-gold);
    font-size: 14px;
    display: flex;
    gap: 1px;
}

.tkl-hero-badge .stars svg {
    width: 17px;
    height: 17px;
    padding: 2px;
}

.tkl-hero-badge .count {
    font-family: var(--tkl-body-font-family), sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
    color: var(--tkl-color-primary);
    opacity: .6;
}

@media (max-width: 767px) {
    .tkl-hero-container {
        padding: 0 20px;
    }

    .tkl-hero-wrapper {
        padding: 80px 0;
        text-align: center;
    }

    .tkl-hero-content {
        margin: 0 auto;
    }

    .tkl-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .tkl-hero-badge {
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .tkl-hero-container {
        padding-bottom: 30px;
    }
}