body {
    font-family: 'Vazir', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
}


.navbar {
    background: #f06292;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-brand,
.nav-link {
    color: white !important;
}

.nav-link:hover {
    background: #d81b60;
    border-radius: 5px;
}

.dropdown-menu {
    background: #fce4ec;
    border: none;
}

.dropdown-item {
    color: #d81b60;
}

.dropdown-item:hover {
    background: #f8bbd0;
}

.hero {
    position: relative;
    min-height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/placeholder-hero.jpg') no-repeat center/cover;
    color: white;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    border-bottom: 5px solid #f06292;
}

h2 {
    color: #d81b60;
    border-bottom: 2px solid #f06292;
    padding-bottom: 10px;
}

.btn-cta {
    background: #f06292;
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    transition: background 0.3s;
}

.btn-cta:hover {
    background: #d81b60;
    color: white;
}

footer {
    background: linear-gradient(135deg, #f06292, #d81b60);
    color: white;
    border-top: 5px solid #fce4ec;
}

.text-pink {
    color: #f06292;
}

.accordion-item {
    border: 1px solid #fce4ec;
    border-radius: 10px;
    margin-bottom: 10px;
}

.accordion-button {
    color: #d81b60;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    background: #fce4ec;
    color: #d81b60;
}

.social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.2);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    color: white;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    bottom: 20px;
    right: 20px;
    background: green;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    justify-content: center;
}

.whatsapp-btn:hover {
    background: lightgreen;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn span.emoji {
    font-size: 1.5rem;
    margin-left: 8px;
}


.scroll-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #f06292;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
}

.scroll-top:hover {
    background: #d81b60;
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
    }


    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
    }
}