/* Menha Hero Content - Ultra Luxury Styling */
.menha-hero-wrap {
    width: 100%;
    position: relative;
    z-index: 20;
}

/* Typography */
.menha-hero-wrap .hero-small-title {
    color: #E9B211;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.menha-hero-wrap h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.menha-hero-wrap .hero-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

.menha-hero-wrap.text-center .hero-desc {
    margin-left: auto;
    margin-right: auto;
}

/* Luxury Divider */
.menha-hero-divider {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #E9B211, transparent);
    margin-bottom: 40px;
}
.menha-hero-wrap.text-center .menha-hero-divider {
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, transparent, #E9B211, transparent);
}

/* Hero Buttons */
.menha-hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menha-hero-wrap.text-center .menha-hero-btns {
    justify-content: center;
}

.btn-luxury {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
}

/* Primary Gold Button */
.btn-luxury-primary {
    background: linear-gradient(135deg, #E9B211 0%, #C99600 100%);
    color: #000 !important;
    box-shadow: 0 15px 35px rgba(233, 178, 17, 0.3);
}

.btn-luxury-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.6s;
}

.btn-luxury-primary:hover::before {
    left: 100%;
}

.btn-luxury-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(233, 178, 17, 0.5);
    background: #ffffff;
}

/* Secondary Outline/Glass Button */
.btn-luxury-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-luxury-secondary:hover {
    background: #ffffff;
    color: #000 !important;
    border-color: #ffffff;
    transform: translateY(-5px);
}

.btn-luxury i {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-luxury:hover i {
    transform: translateX(5px);
}

@media screen and (max-width: 767px) {
    .menha-hero-wrap h1 { font-size: 34px; }
    .menha-hero-wrap .hero-desc { font-size: 16px; }
    .menha-hero-btns { flex-direction: column; gap: 15px; }
    .btn-luxury { width: 100%; justify-content: center; padding: 16px 30px; }
}
