/* thead {
    border: none !important;
    background-color: unset !important;
}

tr {
    border-width: 0px !important;
}

.archidesign-table-wrapper {
    scrollbar-width: none;
    -ms-overflow-style: none;
   
}

.archidesign-table-wrapper::-webkit-scrollbar {
    display: none;
    
}

.archidesign-table-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 70px auto;
    font-family: "Poppins", sans-serif;
    border-radius: 0;
    overflow: visible;
    background: none;
    box-shadow: none;
}

.archidesign-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    border: none;
    table-layout: fixed;
}

.archidesign-table-wrapper {
    max-height: 480px;
    overflow-y: auto;
    position: relative;
}

.archidesign-table thead th {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
}

.archidesign-table th:first-child,
.archidesign-table td:first-child {
    width: 22%;
    min-width: 180px;
}

.archidesign-table th:not(:first-child),
.archidesign-table td:not(:first-child) {
    width: 19.5%;
}

table th:nth-child(2) .heading {
    background: #00bcd4;
    border-radius: 15px 15px 0 0;
}

table th:nth-child(3) .heading {
    background: #6cc24a;
    border-radius: 15px 15px 0 0;
}

table th:nth-child(4) .heading {
    background: #ff9800;
    border-radius: 15px 15px 0 0;
}

table th:nth-child(5) .heading {
    background: #f44336;
    border-radius: 15px 15px 0 0;
}

table th .heading {
    padding: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.archidesign-table i.fa-check {
    color: #4CAF50;
    font-size: 18px;
}

.archidesign-table i.fa-times {
    color: #F44336;
    font-size: 18px;
}

table th .amount {
    color: #000;
    font-size: 38px;
    font-weight: 900;
    margin-top: 5px;
}

table th .amount span {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

table th .billing-msg {
    font-weight: normal;
    font-size: 14px;
    color: #555;
}

.archidesign-table td,
.archidesign-table th {
    border: 1.5px solid #f0f0f0;
    padding: 15px;
}

.archidesign-table tbody tr:nth-child(even) {
    background: #fafafa;
}

@media (max-width: 768px) {
    .archidesign-table-wrapper {
        overflow-x: auto;
        max-height: 400px;
    }

    .archidesign-table th,
    .archidesign-table td {
        white-space: nowrap;
        font-size: 14px;
        padding: 10px;
    }

    table th .amount {
        font-size: 26px;
    }
} */

/* RESET TABLE HEAD + BODY STYLES */
thead {
    border: none !important;
    background-color: unset !important;
}

tr {
    border-width: 0 !important;
}


/* HIDE SCROLLBAR VISUALLY BUT KEEP SCROLLING FUNCTIONAL */
.archidesign-table-wrapper {
    width: 100%;
    max-width: 1000px;    /* for four column 1200px */
    margin: 70px auto;
    font-family: "Poppins", sans-serif;
    border-radius: 0;
    overflow-y: auto;
    overflow-x: hidden;
    background: none;
    box-shadow: none;

    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.archidesign-table-wrapper::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* TABLE BASE */
.archidesign-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    border: none;
    table-layout: fixed;
}

/* STICKY HEADER */
.archidesign-table thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    border-bottom: 2px solid #e0e0e0;
}

/* COLUMN WIDTHS */
.archidesign-table th:first-child,
.archidesign-table td:first-child {
    width: 22%;
    min-width: 180px;
}

.archidesign-table th:not(:first-child),
.archidesign-table td:not(:first-child) {
    width: 19.5%;
}

/* COLUMN HEADER COLORS */
table th:nth-child(2) .heading {
    background: #00bcd4;
    border-radius: 15px 15px 0 0;
}

table th:nth-child(3) .heading {
    background: #6cc24a;
    border-radius: 15px 15px 0 0;
}

table th:nth-child(4) .heading {
    background: #ff9800;
    border-radius: 15px 15px 0 0;
}

table th:nth-child(5) .heading {
    background: #f44336;
    border-radius: 15px 15px 0 0;
}

/* HEADER TEXT */
table th .heading {
    padding: 1rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ICONS */
.archidesign-table i.fa-check {
    color: #4CAF50;
    font-size: 18px;
}

.archidesign-table i.fa-times {
    color: #F44336;
    font-size: 18px;
}

/* AMOUNT TEXT */
table th .amount {
    color: #000;
    font-size: 38px;
    font-weight: 900;
    margin-top: 5px;
    font-family: sans-serif;
}

table th .amount span {
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

table th .billing-msg {
    font-weight: normal;
    font-size: 14px;
    color: #555;
}

/* CELL BORDER + PADDING */
.archidesign-table td,
.archidesign-table th {
    border: 1.5px solid #f0f0f0;
    padding: 15px;
}

/* ALTERNATE ROW COLOR */
.archidesign-table tbody tr:nth-child(even) {
    background: #fafafa;
}

/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    .archidesign-table-wrapper {
        overflow-x: auto;
        max-height: 400px;
    }

    .archidesign-table th,
    .archidesign-table td {
        white-space: nowrap;
        font-size: 14px;
        padding: 10px;
    }

    table th .amount {
        font-size: 26px;

    }
}


/*  */
/* Show only on mobile */
.mobile-accordion {
    display: none;
}

@media (max-width: 768px) {
    .mobile-accordion {
        display: block;
    }

    .archidesign-table-wrapper {
        display: none !important;
    }

    .faq-bg {
        padding: 54px 0 100px !important;
    }
}

/* Accordion header styling */
.accordion-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.accordion-heading-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accordion-heading-content .heading {
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 158px;
    padding: 12px 18px;
    border-radius: 15px;
}

.accordion-heading-content .info {
    text-align: left;
}

.accordion-heading-content .amount {
    color: #000;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.2;
    font-family: sans-serif !important;
}

.accordion-heading-content .amount span {
    font-size: 13px;
    font-weight: 400;
    color: #666;
}

.accordion-heading-content .billing-msg {
    font-weight: normal;
    font-size: 13px;
    color: #555;
}

/* Package colors */
.package-basic .heading {
    background: #00bcd4;
}

.package-essential .heading {
    background: #6cc24a;
}

.package-luxury .heading {
    background: #ff9800;
}

.package-elite .heading {
    background: #f44336;
}

/* Font Awesome size */
.accordion-heading-content i {
    font-size: 18px;
}

/* Table styles */
.package-tab {
    width: 100%;
    font-size: 14px;
}

.package-tab td {
    padding: 8px 5px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.package-tab strong {
    font-weight: 600;
}

.text-success {
    color: #4CAF50;
}

.text-danger {
    color: #F44336;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .accordion-heading-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .accordion-heading-content .amount {
        font-size: 22px;
        font-family: sans-serif !important;
    }
}