/* Menha Contact Section - Luxury Dark Version */
.menha-contact-section {
    position: relative;
    padding: 100px 0;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    text-align: center;
}

.menha-contact-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2;
}

.menha-contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.menha-contact-small-title {
    color: #E9B211;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 25px;
    display: block;
    text-shadow: 0 2px 10px rgba(233, 178, 17, 0.3);
}

.menha-contact-section h2 {
    font-size: 46px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 45px;
}

.menha-contact-info-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.menha-contact-phone-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 18px 45px;
    border-radius: 100px;
    border: 1px solid rgba(233, 178, 17, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.menha-contact-phone-box:hover {
    transform: translateY(-5px);
    background: rgba(233, 178, 17, 0.1);
    border-color: #E9B211;
}

.menha-contact-phone-box span {
    font-size: 32px;
    font-weight: 800;
    color: #E9B211;
}

.menha-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 22px 65px;
    background: linear-gradient(135deg, #E9B211 0%, #B8860B 100%);
    color: #000 !important;
    border-radius: 100px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 16px;
    transition: all 0.4s;
    box-shadow: 0 15px 35px rgba(233, 178, 17, 0.4);
    text-decoration: none !important;
    border: none;
    position: relative;
    overflow: hidden;
}

.menha-contact-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transition: 0.6s;
}

.menha-contact-btn:hover::before {
    left: 100%;
}

.menha-contact-btn i {
    font-size: 18px;
    background: rgba(255, 255, 255, 0.3);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.menha-contact-btn:hover {
    background: #000;
    color: #E9B211 !important;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.menha-contact-btn:hover i {
    background: #E9B211;
    color: #000;
}

.menha-contact-deco {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233,178,17,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}
.menha-contact-deco-1 { top: -200px; left: -100px; }
.menha-contact-deco-2 { bottom: -200px; right: -100px; }

@media screen and (max-width: 767px) {
    .menha-contact-section { padding: 80px 0; }
    .menha-contact-section h2 { font-size: 32px; }
    .menha-contact-phone-box span { font-size: 24px; }
    .menha-contact-btn { width: 100%; justify-content: center; padding: 18px 25px; }
}
