/* Vidhi Piles Care - Custom Styles */

html {
    scroll-padding-top: 5rem;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 32px;
    border-radius: 6px;
}

.testimonial-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: #F38218;
    width: 24px;
    border-radius: 5px;
}

.sticky-sidebar-inner {
    position: sticky;
    top: 6rem;
}

/* FAQs Section */
.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item .faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active {
    box-shadow: 0 10px 30px rgba(243, 130, 24, 0.12);
}

.faq-item.active .faq-question {
    color: #F38218;
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open #mobile-overlay {
    opacity: 1;
    visibility: visible;
}

body.mobile-menu-open #mobile-sidebar {
    transform: translateX(0);
}

.mobile-dropdown.open .mobile-dropdown-content {
    display: block;
}

.mobile-dropdown.open .mobile-dropdown-btn svg {
    transform: rotate(180deg);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FFF7ED;
    color: #F38218;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.hero-overlay {
    background: linear-gradient(135deg,
            rgba(63, 63, 63, 0.95) 0%,
            rgba(63, 63, 63, 0.80) 45%,
            rgba(243, 130, 24, 0.85) 100%);
}

.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(13, 148, 136, 0.15);
}

.blog-content h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #1E293B;
    margin: 1.5rem 0 1rem;
}

.blog-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin: 1.5rem 0 0.75rem;
}

.blog-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #334155;
    margin: 1.25rem 0 0.5rem;
}

.blog-content p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: #475569;
}

.blog-content ul,
.blog-content ol {
    margin: 0.75rem 0 1rem 1.5rem;
    color: #475569;
}

.blog-content li {
    margin-bottom: 0.375rem;
    line-height: 1.65;
}

.blog-content strong {
    color: #1E293B;
    font-weight: 600;
}

.service-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #1E293B;
    margin: 1.5rem 0 0.75rem;
}

.service-content ul,
.service-content ol {
    margin: 0.5rem 0 1rem 1.25rem;
}

.service-content li {
    margin-bottom: 0.375rem;
    line-height: 1.65;
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            rgba(63, 63, 63, 0.90),
            rgba(63, 63, 63, 0.65),
            rgba(243, 130, 24, 0.70)),
        url('/assets/images/hero/breadcrumbs.jpg');

    background-size: cover;
    background-position: center;
}

.img-placeholder {
    background: linear-gradient(135deg,
            #FFF7ED 0%,
            #FFEDD5 100%);
}

#main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #F38218;
    box-shadow: 0 0 0 3px rgba(243, 130, 24, 0.15);
}