/* Boat Detail Page - Semantic CSS with bc_ prefix */

body {
	font-family: "Montserrat", sans-serif;
	padding: 0;
	margin: 0;
}

.bc_hero_intro_container {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 1rem;
}

.bc_hero_intro_subtitle {
    color: #1e3a2b;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    display: block;
}

.bc_hero_intro_title {
    font-family: "Poppins", sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a281f;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.bc_hero_intro_desc {
	font-family: "Poppins", sans-serif;
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.625;
    font-weight: 300;
}

.bc_hero_intro_divider {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.bc_hero_intro_line {
    width: 3rem;
    height: 2px;
    background-color: #ff8c7a;
    opacity: 0.5;
}

.bc_hero_intro_icon {
    color: #ff8c7a;
}

@media (min-width: 768px) {
    .bc_hero_intro_title {
        font-size: 3.75rem;
    }
    
    .bc_hero_intro_desc {
        font-size: 1.25rem;
    }

    .bc_hero_intro_line {
        width: 6rem;
    }
}


/* Hero Section */
.bc_hero_section {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    background-color: #1f2937;
}

@media (min-width: 768px) {
    .bc_hero_section {
        height: 70vh;
    }
}

.bc_hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    z-index: 10;
}

.bc_hero_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc_hero_content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding-bottom: 3rem;
    padding-top: 6rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.bc_hero_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.bc_hero_inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bc_hero_inner {
        flex-direction: row;
        align-items: flex-end;
    }
}

.bc_hero_info {
    flex: 1;
}

.bc_hero_badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bc_category_badge {
    padding: 0.25rem 0.75rem;
    background-color: #d4af37;
    color: #1e3a2b;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bc_rating_stars {
    display: flex;
    align-items: center;
    color: #facc15;
}

.bc_rating_star {
    font-size: 0.875rem;
}

.bc_rating_count {
    color: white;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    font-weight: 500;
}

.bc_hero_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
	font-family: "Poppins", sans-serif;
}

@media (min-width: 768px) {
    .bc_hero_title {
        font-size: 1.78rem;
    }
}

.bc_hero_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .bc_hero_meta {
        font-size: 1rem;
    }
}

.bc_meta_item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bc_hero_actions {
    display: none;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .bc_hero_actions {
        display: flex;
    }
}

.bc_action_button {
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.bc_action_button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.bc_action_primary {
    background-color: white;
    color: #1e3a2b;
    font-weight: 600;
}

.bc_action_primary:hover {
    background-color: #f3f4f6;
}

/* Main Content Layout */
.bc_detail_container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.bc_detail_layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .bc_detail_layout {
        flex-direction: row;
    }
}

.bc_detail_main {
    width: 100%;
}

@media (min-width: 1024px) {
    .bc_detail_main {
        width: 66.666667%;
    }
}

.bc_detail_sidebar {
    width: 100%;
}

@media (min-width: 1024px) {
    .bc_detail_sidebar {
        width: 33.333333%;
    }
}

.bc_content_section {
    margin-bottom: 3rem;
}

/* About Section */
.bc_about_section {
    max-width: none;
}

.bc_section_divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.bc_divider_line {
    height: 2px;
    width: 3rem;
    background-color: #ff8c7a;
}

.bc_section_title_main {
    font-family: "Poppins", sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a281f;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

@media (min-width: 768px) {
    .bc_divider_line {
        width: 6rem;
    }
    .bc_section_title_main {
        font-size: 3rem;
    }
}


.bc_section_heading {
    font-size: 1.87rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
	font-family: "Poppins", sans-serif;
}

.bc_section_text {
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 1rem;
}


/* Specifications Section */
.bc_specs_card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}



.bc_specs_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}



.bc_specs_icon {
    color: #1e3a2b;
    font-size: 1.875rem;
}


.bc_specs_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bc_specs_grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
        row-gap: 1.5rem;
    }
}

.bc_spec_item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.5rem;
}


.bc_spec_label {
	font-weight: 600;
    color: #6b7280;
	padding: 4px 0 4px;
}

.bc_spec_value {
    color: #1f2937;
	padding: 4px 0 4px;
}

.bc_specs_full {
    grid-column: 1 / -1;
    padding-top: 0.5rem;
}

.bc_facility_title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}


.bc_facility_desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}


.bc_facility_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bc_facility_tag {
    padding: 0.25rem 0.75rem;
    background-color: #f3f4f6;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
}

/* Tabel in Single Boat */
.bc_tech_table {
    width: 100%;
    border-collapse: collapse;
    border: none;
}

.bc_data_table tbody tr td,
.bc_attribute_label,
.bc_attribute_value {
    vertical-align: top;
}

.bc_tech_body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0 1.5rem;
}

@media (min-width: 768px) {
    .bc_tech_body {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
    }
}

.bc_tech_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f3f4f6;
    padding: 0.625rem 0;
}

.bc_tech_label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.875rem;
    padding: 0;
	border: none;
	background-color: none;
}

.bc_tech_value {
    color: #1f2937;
    text-align: right;
    font-size: 0.875rem;
    padding: 0;
	border: none;
	background-color: none;
}

@media (max-width: 767px) {
    .bc_tech_row:last-child {
        border-bottom: none;
    }
}

/* End */

/* Tabel */
.bc_tech_info_card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.bc_tech_info_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bc_table_responsive {
    width: 100%;
}

.bc_data_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.bc_data_table tr {
    border: none;
}

.bc_data_table tr:nth-child(odd) {
    background-color: #f9fafb;
}

.bc_data_table td {
    padding: 1rem 1.25rem;
    vertical-align: middle;
    border: none;
}

.bc_data_table td:first-child {
    border-radius: 0.75rem 0 0 0.75rem;
}

.bc_data_table td:last-child {
    border-radius: 0 0.75rem 0.75rem 0;
}

.bc_attribute_label {
    font-weight: 600;
    color: #3c3e42;
    width: 35%;
    font-size: 0.95rem;
}

.bc_attribute_value {
    color: #374151;
    font-weight: 500;
    text-align: right;
}

@media (max-width: 768px) {
    .bc_data_table tr {
        display: block;
        margin-bottom: 1rem;
        padding: 0.5rem;
        background-color: #f9fafb !important;
        border-radius: 0.75rem;
    }

    .bc_data_table td {
        display: block;
        width: 100% !important;
        padding: 0.5rem 0.75rem;
        text-align: left !important;
        background-color: transparent !important;
        border-radius: 0 !important;
    }

    .bc_attribute_label {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #9ca3af;
    }

    .bc_attribute_value {
        font-size: 1rem;
        color: #111827;
    }
}

/* Call to action */
.bc_cta_group {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #f3f4f6;
}

.bc_btn_cta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ecebe4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.bc_btn_cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
color: #ffffff;
    filter: brightness(1.15);
}

.bc_btn_cta:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.2);
    filter: brightness(0.95);
}

.bc_btn_shared {
    background-color: #1a281f;
}

.bc_btn_shared:hover {
    background-color: rgba(26, 40, 31, 0.9);
}

.bc_btn_charter {
    background-color: #447604;
}

.bc_btn_charter:hover {
    background-color: rgba(68, 118, 4, 0.9);
}

.bc_btn_icon {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

@media (max-width: 640px) {
    .bc_cta_group {
        flex-direction: column;
    }
}

/* Gallery Section with Swiper */
.bc_gallery_section {
    margin-bottom: 3rem;
}

.bc_gallery_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.bc_swiper_container {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
}

.bc_swiper_slide {
    width: 100%;
    height: 100%;
}

.bc_swiper_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc_swiper_button_prev,
.bc_swiper_button_next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    color: #1e3a2b;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 10;
    cursor: pointer;
    border: none;
}

.bc_swiper_button_prev:hover,
.bc_swiper_button_next:hover {
    background-color: white;
}

.bc_swiper_button_prev {
    left: 1rem;
}

.bc_swiper_button_next {
    right: 1rem;
}

.bc_swiper_pagination {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.bc_pagination_bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.bc_pagination_bullet_active {
    background-color: white;
    width: 1.5rem;
    border-radius: 0.25rem;
}

.bc_gallery_thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.bc_thumb_item {
    height: 6rem;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
    position: relative;
}

.bc_thumb_item:hover {
    opacity: 1;
}

.bc_thumb_active {
    opacity: 1;
    ring: 2px solid #1e3a2b;
}

.bc_thumb_image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bc_thumb_overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Reviews Section */
.bc_reviews_section {
    margin-bottom: 3rem;
}

.bc_reviews_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.bc_write_review_button {
    color: #1e3a2b;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
}

.bc_write_review_button:hover {
    text-decoration: underline;
}


.bc_reviews_list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bc_review_card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
}


.bc_review_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.bc_reviewer_info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.bc_reviewer_avatar {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 700;
}

.bc_reviewer_avatar_alt {
    background-color: rgba(30, 58, 43, 0.1);
    color: #1e3a2b;
}

.bc_reviewer_name {
    font-weight: 700;
    color: #1f2937;
    font-size: 0.875rem;
}


.bc_review_date {
    font-size: 0.75rem;
    color: #6b7280;
}


.bc_review_rating {
    display: flex;
    color: #facc15;
    font-size: 0.875rem;
}

.bc_review_text {
    color: #6b7280;
    font-size: 0.875rem;
}


/* Sidebar Sticky */
.bc_sidebar_sticky {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Price Card */
.bc_price_card {
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    overflow: hidden;
}


.bc_price_header {
    background-color: #1e3a2b;
    padding: 1rem;
    text-align: center;
}

.bc_price_label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.bc_price_amount {
    color: white;
    font-weight: 700;
    font-size: 1.875rem;
    margin-top: 0.25rem;
}

.bc_price_unit {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.bc_price_body {
    padding: 1.5rem;
}

.bc_price_breakdown {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}


.bc_breakdown_item {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.bc_breakdown_label {
    color: #6b7280;
}


.bc_breakdown_value {
    font-weight: 500;
    color: #1f2937;
}


.bc_total_row {
    padding-top: 0.5rem;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1e3a2b;
}


.bc_booking_actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bc_book_button {
    width: 100%;
    background-color: #1e3a2b;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(30, 58, 43, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.bc_book_button:hover {
    background-color: #2a503b;
}

.bc_whatsapp_button {
    width: 100%;
    background-color: #25D366;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.bc_whatsapp_button:hover {
    background-color: #20bd5a;
}

.bc_price_footer {
    background-color: #f9fafb;
    padding: 1rem;
    text-align: center;
    font-size: 0.75rem;
    color: #6b7280;
    border-top: 1px solid #f3f4f6;
}

/* Help Card */
.bc_help_contact_card {
    background-color: rgba(30, 58, 43, 0.05);
    border: 1px solid rgba(30, 58, 43, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.bc_help_content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.bc_help_icon_wrapper {
    background-color: white;
    padding: 0.5rem;
    border-radius: 50%;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.bc_help_icon {
    color: #1e3a2b;
    font-size: 1.5rem;
}

.bc_help_text_wrapper {
    flex: 1;
}

.bc_help_heading {
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.25rem;
}


.bc_help_description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}


.bc_help_link {
    color: #1e3a2b;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

.bc_help_link:hover {
    text-decoration: underline;
}

.bc_help_action_wrapper {
    position: relative;
    width: 100%;
    margin-top: 15px;
}

.bc_help_button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background-color: #1a281f;
    color: #ecebe4;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bc_help_button .bc_arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* Modal Inline Content */
.bc_help_modal_inline {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
}

.bc_help_inner_box {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #f0f0f0;
    margin-top: -4px;
}

.bc_help_action_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    transition: filter 0.2s ease, transform 0.2s ease;
}

.bc_wa_help {
    background-color: #128c7e;
}

.bc_book_help {
    background-color: #301014;
}

/* Hover States */
.bc_help_action_wrapper:hover .bc_help_button {
    background-color: #2a3d31;
    border-radius: 8px 8px 0 0;
	color: #fff;
}

.bc_help_action_wrapper:hover .bc_help_button .bc_arrow {
    transform: rotate(180deg);
}

.bc_help_action_wrapper:hover .bc_help_modal_inline {
    max-height: 250px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bc_help_action_link:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
	color: #fff;
}

/* Icon size inside buttons */
.bc_help_action_link i,
.bc_help_action_link .material-symbols-outlined {
    font-size: 18px;
}

/* Similar Boats Section */
.bc_similar_section {
    margin-top: 5rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 3rem;
}


.bc_similar_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.bc_similar_grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .bc_similar_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .bc_similar_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ Section */
.bc_faq_section {
    margin-top: 5rem;
}

.bc_faq_title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
    text-align: center;
}

.bc_faq_container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bc_faq_item {
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid #f3f4f6;
    overflow: hidden;
}

.bc_faq_button {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1f2937;
    background: none;
    border: none;
    cursor: pointer;
}

.bc_faq_button:focus {
    outline: none;
}

.bc_faq_icon {
    color: #9ca3af;
}

