body {
    direction: ltr;
    padding: 0;
    margin: 0;
    font-family: Tahoma;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.header-menu a {
    color: #333333;
}

.header-menu .nav-item:hover {
    border-bottom: 2px solid red;
}

.dropdown-menu-custome {
    width: 100%;
    top: 46px;
    text-align: right;
}

.nav-item:hover > .dropdown-menu {
    display: block;
}

.design-service ul li {
    list-style: none;
    padding-bottom: 15px;
}

.menu-user ul {
    list-style: none;
}

.menu-user a {
    color: #686e71;
}

.menu-user a:hover {
    color: #333333;
}

.details-card {
    border-radius: 15px;
}

.details-card:hover {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border: 0px;
}
.card:hover{
    border-color:#333333 !important;
}

.nav-pills a,.nav-pills a:visited{ color:#000}
.nav-pills a:hover{color:#0f401b}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    background-color: #6c757d !important;
}
.dropdown-item:focus, .dropdown-item:hover { background:#000}

/* BACKGROUND */
.schedule-section{
    background:url('../img/bgfirst.jpg') center/cover no-repeat;
    min-height:80vh;
    display:flex;
    align-items:center;
    position:relative;
}
.schedule-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    backdrop-filter:blur(3px); /* 🔥 برگشت محو شدن */
}
.schedule-content{position:relative;z-index:2}

/* LOGO */
.logo{max-width:180px;margin-bottom:20px}

/* DAY CIRCLES */
.row{row-gap:20px}
.day-circle{
    width:110px;height:110px;
    border-radius:50%;
    border:4px solid #d4af37;
    color:#fff;
    display:flex;flex-direction:column;justify-content:center;align-items:center;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(5px); /* 🔥 افکت شیشه‌ای برگشت */
    cursor:pointer;
    transition:.3s;
    margin:0 auto;
}
.day-circle:hover{
    background:linear-gradient(135deg,#d4af37,#f1d77a);
    color:#000;
    transform:scale(1.08);
    box-shadow:0 0 20px rgba(212,175,55,0.6);
}

/* SLOTS */
.col-4{width:33.333%}
.time-slot{
    width:100%;
    border:none;
    border-radius:10px;
    padding:12px;
    margin-bottom:10px;
    font-weight:500;
}
.free{background:#198754;color:#fff}
.booked{background:#dc3545;color:#fff}

/* GOLD BUTTON + SHINE */
.btn-gold{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#d4af37,#f1d77a);
    color:#000;
    border:none;
}
.btn-gold:hover{
    transform:scale(1.05);
    box-shadow:0 0 20px rgba(212,175,55,0.7);
}

/* shine */
.btn-gold::before{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.6),transparent);
    transform:skewX(-20deg);
}
.btn-gold:hover::before{
    left:125%;
    transition:0.8s;
}

.text-gold{
    color: #F1D77AFF;
}
/* FULLSCREEN OFFCANVAS */
.offcanvas.offcanvas-end{
    width:100% !important;
}

/* CONTACT */
.contact-bar{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:20px;
}
.contact-bar a{
    width:55px;height:55px;border-radius:50%;
    display:flex;align-items:center;justify-content:center;
    background:rgba(255,255,255,0.08);
    color:#fff;text-decoration:none;
    transition:.3s;
}
.contact-bar a:hover{transform:scale(1.1)}
.contact-bar .wa:hover{background:#25D366}
.contact-bar .tg:hover{background:#229ED9}
.contact-bar .in:hover{ background: #C13584;}
.contact-bar .ph:hover{background:#d4af37;color:#000}

/* ✅ TOAST سبز */
.toast-success{
    background:#198754 !important;
    color:#fff;
}