/* ================================
   BC SERVICES - STYLE CSS (CLEAN)
   ================================ */

/* Service Details Section */
.bc-service-details-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.bc-service-details-wrapper {
    margin: 0;
}

/* Service Details Thumbnail */
.bc-details-thumb {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.bc-details-thumb:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.bc-details-thumb img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Service Details Content */
.bc-details-content {
    padding: 0;
}

.bc-details-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

.bc-details-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 2px;
}

.bc-details-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 30px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.bc-details-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 2px;
}

.bc-details-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* BC Box */
.bc-box {
    display: block;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 140, 66, 0.05) 100%);
    border-left: 4px solid #e6bd52;
    border-radius: 4px;
    margin-bottom: 30px;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.bc-box:hover {
    background: linear-gradient(135deg, rgb(230, 189, 82) 0%, rgb(230, 189, 82) 100%);
    transform: translateX(5px);
}

/* List Content */
.bc-list-content {
    margin-bottom: 40px;
    margin-top: 50px;
}

.bc-list-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.bc-list-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: #e6bd52;
    border-radius: 2px;
}

.bc-list-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-list-content li {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.bc-list-content li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bc-list-content li:hover {
    padding-left: 10px;
}

.bc-list-content li span {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.bc-list-content li span i {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #e6bd52;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 10px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* FAQ Content */
.bc-faq-content {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
}

.bc-faq-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
}

/* FAQ Accordion */
.bc-faq-accordion {
    margin-top: 20px;
}

.bc-faq-accordion .accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out;
}

.bc-faq-accordion .accordion-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.1);
}

.bc-faq-accordion .accordion-item:nth-child(1) {
    animation-delay: 0.1s;
}

.bc-faq-accordion .accordion-item:nth-child(2) {
    animation-delay: 0.2s;
}

.bc-faq-accordion .accordion-item:nth-child(3) {
    animation-delay: 0.3s;
}

.bc-faq-accordion .accordion-item:nth-child(4) {
    animation-delay: 0.4s;
}

.bc-faq-accordion .accordion-button {
    background-color: #fff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    padding: 20px;
    border: none;
    position: relative;
    letter-spacing: 1px;
}

.bc-faq-accordion .accordion-button:focus {
    background-color: #fff;
    box-shadow: none;
    border-color: transparent;
    color: #ff6b35;
}

.bc-faq-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 66, 0.05) 100%);
    color: #e6bd52;
    box-shadow: none;
}

.bc-faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff6b35' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-color: transparent;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
}

.bc-faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.bc-faq-accordion .accordion-body {
    padding: 20px;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    background-color: #fafafa;
    letter-spacing: 1px;
}

/* Sidebar */
.bc-main-sidebar {
    padding-left: 30px;
}

.bc-sticky-style {
    position: sticky;
    top: 100px;
}

.bc-single-sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bc-widget-title {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.bc-widget-title h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    position: relative;
}

.bc-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-category-list li {
    margin-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 12px;
    transition: all 0.3s ease;
}

.bc-category-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.bc-category-list li:hover {
    padding-left: 8px;
}

.bc-category-list a {
    display: inline;
    justify-content: space-between;
    align-items: center;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.bc-category-list a:hover {
    color: #ff6b35;
}

.bc-category-list span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #ff6b35;
    font-size: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.bc-category-list li:hover span {
    opacity: 1;
}

/* Service Sidebar */
.bc-service-sidebar {
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.bc-service-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.bc-bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bc-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: #fff;
}

.bc-content span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #ddd;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.bc-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 10px 0 20px 0;
    line-height: 1.3;
}

.bc-content h3 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bc-content h3 a:hover {
    color: #ff6b35;
}

.bc-content .theme-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, #e6bd52 0%, #e6bd52 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
    letter-spacing: 1px;
}

.bc-content .theme-btn:hover {
    background: linear-gradient(135deg, #e6bd52 0%, #e6bd52 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.bc-content .theme-btn i {
    margin-left: 8px;
    font-size: 12px;
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design - Desktop (991px and above) */
@media (max-width: 991px) {
    .bc-service-details-section {
        padding: 60px 0;
    }

    .bc-details-content h2 {
        font-size: 26px;
    }

    .bc-details-content h3,
    .bc-list-content h3 {
        font-size: 20px;
    }

    .bc-main-sidebar {
        padding-left: 0;
        margin-top: 40px;
    }

    .bc-sticky-style {
        position: static;
    }
}

/* Responsive Design - Tablet (768px to 991px) */
@media (max-width: 768px) {
    .bc-service-details-section {
        padding: 50px 0;
    }

    .bc-details-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .bc-details-content h3,
    .bc-list-content h3 {
        font-size: 18px;
        margin-top: 25px;
    }

    .bc-details-content p {
        font-size: 15px;
    }

    .bc-list-content li {
        margin-bottom: 20px;
    }

    .bc-single-sidebar-widget {
        padding: 20px;
    }

    .bc-widget-title h3 {
        font-size: 18px;
    }

    .bc-category-list a {
        font-size: 14px;
    }

    .bc-faq-accordion .accordion-button {
        font-size: 15px;
        padding: 18px;
    }

    .bc-faq-accordion .accordion-body {
        padding: 18px;
        font-size: 14px;
    }

    .bc-service-sidebar {
        min-height: 220px;
        padding: 25px;
    }

    .bc-content span {
        font-size: 13px;
    }

    .bc-content h3 {
        font-size: 20px;
    }

    .bc-content .theme-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Responsive Design - Mobile (576px to 768px) */
@media (max-width: 576px) {
    .bc-service-details-section {
        padding: 40px 0;
    }

    .bc-details-content h2 {
        font-size: 22px;
    }

    .bc-details-content h3,
    .bc-list-content h3 {
        font-size: 17px;
        margin-top: 20px;
    }

    .bc-details-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .bc-box {
        padding: 15px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .bc-list-content li {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .bc-single-sidebar-widget {
        padding: 15px;
        margin-bottom: 25px;
    }

    .bc-widget-title h3 {
        font-size: 16px;
    }

    .bc-category-list a {
        font-size: 13px;
    }

    .bc-category-list li {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .bc-faq-content {
        margin-top: 30px;
        padding-top: 30px;
    }

    .bc-faq-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .bc-faq-accordion .accordion-item {
        margin-bottom: 12px;
    }

    .bc-faq-accordion .accordion-button {
        font-size: 14px;
        padding: 15px;
    }

    .bc-faq-accordion .accordion-body {
        padding: 15px;
        font-size: 13px;
    }

    .bc-service-sidebar {
        min-height: 200px;
        padding: 20px;
    }

    .bc-content span {
        font-size: 12px;
    }

    .bc-content h3 {
        font-size: 18px;
        margin: 8px 0 15px 0;
    }

    .bc-content .theme-btn {
        padding: 10px 18px;
        font-size: 12px;
        margin-top: 8px;
    }
}

/* Responsive Design - Small Mobile (380px and below) */
@media (max-width: 380px) {
    .bc-service-details-section {
        padding: 30px 0;
    }

    .bc-details-content h2 {
        font-size: 20px;
    }

    .bc-details-content h3,
    .bc-list-content h3 {
        font-size: 16px;
    }

    .bc-details-content p {
        font-size: 13px;
    }

    .bc-box {
        padding: 12px;
        font-size: 13px;
    }

    .bc-list-content li span {
        font-size: 14px;
    }

    .bc-single-sidebar-widget {
        padding: 12px;
        margin-bottom: 20px;
    }

    .bc-widget-title h3 {
        font-size: 15px;
    }

    .bc-category-list a {
        font-size: 12px;
    }

    .bc-faq-accordion .accordion-button {
        font-size: 13px;
        padding: 12px;
    }

    .bc-faq-accordion .accordion-body {
        padding: 12px;
        font-size: 12px;
    }

    .bc-service-sidebar {
        min-height: 180px;
        padding: 15px;
    }

    .bc-content h3 {
        font-size: 16px;
        margin: 5px 0 12px 0;
    }

    .bc-content .theme-btn {
        padding: 8px 15px;
        font-size: 11px;
    }
}

/* Print Styles */
@media print {
    .bc-service-sidebar {
        page-break-inside: avoid;
    }

    .bc-faq-accordion .accordion-button::after {
        display: none;
    }
}
