body {
    font-family: 'Vazir', sans-serif;
    line-height: 1.6;
    color: #333;
    background: white;
    scroll-behavior: smooth;
}

.hero {
    position: relative;
    min-height: 50vh;
    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;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: background 0.5s ease;
}

.hero:hover {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/placeholder-hero.jpg') no-repeat center/cover;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: 700;
    animation: fadeIn 1s ease-in;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.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;
}

.stepper-section {
    margin: 20px auto;
    padding: 10px;
}

.step-nav-menu {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
}

.step-nav {
    padding: 6px 12px;
    color: #555;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    border: 1px solid #f06292;
}

.step-nav:hover {
    background: #fce4ec;
    color: #d81b60;
}

.step-nav.active {
    background: #f06292;
    color: #fff;
    font-weight: 500;
}

.stepper-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.step-card {
    flex: 0 0 180px;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, width 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    text-align: center;
    scroll-snap-align: center;
}

.step-card.active {
    flex: 0 0 300px;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(240, 98, 146, 0.2);
    z-index: 10;
}

.step-card:hover {
    transform: scale(1.03);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f06292;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.step-title {
    font-size: 1rem;
    color: #d81b60;
    font-weight: 700;
    margin-bottom: 5px;
}

.step-desc {
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 8px;
    display: none;
}

.step-card.active .step-desc {
    display: block;
}

.step-img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    border: 2px solid #fce4ec;
    transition: transform 0.2s ease;
}

.step-card.active .step-img {
    width: 100%;
    height: 150px;
}

.step-img:hover {
    transform: scale(1.02);
}

.why-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #fce4ec;
    padding: 15px;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.text-pink {
    color: #f06292;
}

.why-card h5 {
    font-size: 1.1rem;
    color: #d81b60;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.85rem;
    color: #666;
}

.accordion-item {
    border: 1px solid #fce4ec;
    border-radius: 8px;
    margin-bottom: 8px;
}

.accordion-button {
    color: #d81b60;
    background: #fff;
}

.accordion-button:not(.collapsed) {
    background: #fce4ec;
    color: #d81b60;
}

/* Comments Section Styling */
.comments-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #fce4ec;
    scroll-behavior: smooth;
    gap: 20px;
    scroll-snap-type: x mandatory;
}

.comment-card {
    flex: 0 0 300px;
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #f8bbd0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(50px);
    animation: slideInHorizontal 0.5s ease forwards;
    transition: transform 0.3s ease;
    scroll-snap-align: start;
}

.comment-card:hover {
    transform: scale(1.05);
}

.comment-card .comment-name {
    color: #d81b60;
    font-weight: bold;
    margin-bottom: 5px;
}

.comment-card .comment-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.comment-card .comment-date {
    font-size: 0.8rem;
    color: #999;
}

@keyframes slideInHorizontal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.comments-container::-webkit-scrollbar {
    height: 8px;
}

.comments-container::-webkit-scrollbar-track {
    background: #fce4ec;
    border-radius: 10px;
}

.comments-container::-webkit-scrollbar-thumb {
    background: #f06292;
    border-radius: 10px;
}

.comments-container::-webkit-scrollbar-thumb:hover {
    background: #d81b60;
}

.comment-card.animate-slide {
    animation: slideInHorizontal 0.5s ease forwards;
}

.btn-cta {
    background: #f06292;
    color: white;
    border-radius: 20px;
    padding: 8px 18px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    border: none;
}

.btn-cta:hover {
    background: #d81b60;
    color: white;
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    max-width: 80%;
    max-height: 70%;
    overflow: auto;
    position: relative;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.modal-content img {
    max-width: 100%;
    border-radius: 6px;
}

.close-modal {
    position: absolute;
    top: 6px;
    right: 10px;
    font-size: 1.2rem;
    color: #d81b60;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-modal:hover {
    color: #b01550;
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.15);
}

.whatsapp-btn {
    position: fixed;
    color: white;
    padding: 8px 12px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    bottom: 15px;
    right: 15px;
    background: green;
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    justify-content: center;
}

.whatsapp-btn:hover {
    background: lightgreen;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn span.emoji {
    font-size: 1.3rem;
    margin-left: 6px;
}

.scroll-top {
    position: fixed;
    bottom: 15px;
    left: 15px;
    background: #f06292;
    color: white;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px 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;
}

h2 {
    color: #d81b60;
    border-bottom: 2px solid #f06292;
    padding-bottom: 8px;
}

footer {
    background: linear-gradient(135deg, #f06292, #d81b60);
    color: white;
    border-top: 5px solid #fce4ec;
}

.stepper-container::-webkit-scrollbar {
    height: 6px;
}

.stepper-container::-webkit-scrollbar-track {
    background: #fce4ec;
    border-radius: 8px;
}

.stepper-container::-webkit-scrollbar-thumb {
    background: #f06292;
    border-radius: 8px;
}

.stepper-container::-webkit-scrollbar-thumb:hover {
    background: #d81b60;
}

/* Upcoming Workshop Section */
.upcoming-workshop-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #fce4ec;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upcoming-workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.upcoming-workshop-card h3 {
    color: #d81b60;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.upcoming-workshop-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.upcoming-workshop-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.upcoming-workshop-card ul li {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 8px;
    position: relative;
    padding-right: 20px;
}

.upcoming-workshop-card ul li::before {
    content: "✔";
    color: #f06292;
    position: absolute;
    right: 0;
    font-size: 1rem;
}

@media (min-width: 768px) {
    .hero {
        min-height: 60vh;
    }
    .comments-container {
        max-height: 280px;
    }
    .comment-card {
        flex: 0 0 240px;
        min-width: 240px;
    }
    .step-card {
        flex: 0 0 200px;
    }
    .step-card.active {
        flex: 0 0 350px;
    }
    .step-card.active .step-img {
        height: 180px;
    }
    .step-nav {
        font-size: 0.95rem;
        padding: 8px 15px;
    }
    .breadcrumb {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
    .upcoming-workshop-card h3 {
        font-size: 1.5rem;
    }
    .upcoming-workshop-card p {
        font-size: 1rem;
    }
    .upcoming-workshop-card ul li {
        font-size: 0.95rem;
    }
}

@media (min-width: 992px) {
    .stepper-container {
        overflow-x: visible;
        flex-wrap: nowrap;
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .step-card {
        flex: 0 0 160px;
    }
    .step-card.active {
        flex: 0 0 260px;
    }
    .step-img {
        height: 80px;
    }
    .step-card.active .step-img {
        height: 120px;
    }
    .step-nav {
        font-size: 0.85rem;
        padding: 6px 10px;
    }
    .step-nav-menu {
        flex-wrap: wrap;
        gap: 6px;
        padding: 6px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 40vh;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .step-card {
        flex: 0 0 140px;
        padding: 8px;
    }
    .step-card.active {
        flex: 0 0 240px;
    }
    .step-title {
        font-size: 0.9rem;
    }
    .step-desc {
        font-size: 0.75rem;
    }
    .step-img {
        height: 70px;
    }
    .step-card.active .step-img {
        height: 100px;
    }
    .why-card {
        margin-bottom: 15px;
    }
    .comment-card {
        flex: 0 0 260px;
        min-width: 260px;
    }
    .breadcrumb {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
    .upcoming-workshop-card h3 {
        font-size: 1.2rem;
    }
    .upcoming-workshop-card p {
        font-size: 0.9rem;
    }
    .upcoming-workshop-card ul li {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero {
        min-height: 35vh;
    }
    .hero h1 {
        font-size: 1.5rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .step-card {
        flex: 0 0 120px;
        padding: 6px;
    }
    .step-card.active {
        flex: 0 0 220px;
    }
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }
    .step-img {
        height: 60px;
    }
    .step-card.active .step-img {
        height: 90px;
    }
    .whatsapp-btn,
    .scroll-top {
        width: 40px;
        height: 40px;
    }
    .comment-card {
        flex: 0 0 240px;
        min-width: 240px;
    }
    .step-nav {
        font-size: 0.8rem;
        padding: 5px 8px;
    }
    .step-nav-menu {
        gap: 4px;
    }
    .breadcrumb {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    .upcoming-workshop-card h3 {
        font-size: 1.1rem;
    }
    .upcoming-workshop-card p {
        font-size: 0.85rem;
    }
    .upcoming-workshop-card ul li {
        font-size: 0.8rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Breadcrumb Styling */
.breadcrumb {
    background: #fce4ec;
    border-radius: 8px;
    padding: 8px 15px;
    font-family: 'Vazir', sans-serif;
    font-size: 0.9rem;
    direction: rtl;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    margin: 15px auto;
    max-width: 1000px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #f06292;
    font-weight: bold;
    padding: 0 8px;
}

.breadcrumb-item a {
    color: #d81b60;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #b01550;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #555;
    font-weight: 500;
}