/* Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 35px;
    animation: fadeInDown 0.8s ease;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 5px;
    background: linear-gradient(to right, #b3b3b3, #f1e3d8);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 30px auto 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.8;
}

/* Desktop Table */
.desktop-view {
    display: block;
    animation: fadeInUp 1s ease;
}

.table-wrapper {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.table-wrapper:hover {
    transform: translateY(-5px);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.pricing-table thead {
    background: #34443E;
}

.pricing-table thead th {
    padding: 0;
    border: none;
    vertical-align: top;
    position: relative;
}

.pricing-table thead th:first-child {
    background: #1f2a26;
    padding: 40px 35px;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    width: 28%;
}

.header-cell {
    padding: 40px 25px 20px;
    text-align: center;
    color: white;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.header-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.header-cell:hover::before {
    transform: translateY(0);
}

.header-cell:hover {
    transform: translateY(-8px);
}

.luxury-header {
    background: linear-gradient(135deg, #34443E 0%, #5f6f6a 100%);
}

.elite-header {
    background: linear-gradient(135deg, #34443E 0%, #5f6f6a 100%);
    position: relative;
}

.recommended-badge {
    position: absolute;
    top: 10px;
    left: 23%;
    transform: translateX(-50%);
    background: #e5e9e7;
    color: #292828;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    text-transform: uppercase;
}

.package-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.package-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin: 20px 0;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.package-price small {
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-top: 10px;
    opacity: 0.95;
}

.package-area {
    font-size: 1rem;
    opacity: 0.95;
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
}

.pricing-table tbody tr {
    border-bottom: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: linear-gradient(90deg, rgb(149 149 149 / 6%) 0%, rgb(0 0 0 / 6%) 100%);
    transform: scale(1.008);
}

.pricing-table tbody td {
    padding: 25px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: #34495e;
}

.pricing-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    background: rgba(26, 26, 46, 0.04);
    color: #1a1a2e;
    padding-left: 35px;
    font-size: 1.1rem;
    position: relative;
}

.pricing-table tbody td:first-child::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(to bottom, #646161, #ece7e3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-table tbody tr:hover td:first-child::before {
    opacity: 1;
}

.check-mark {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.cross-mark {
    color: #ef0909 !important;
    font-size: 1.4rem;
    font-weight: 900;
    opacity: 0.7;
}

.value-text {
    font-weight: 700;
    color: #1a1a2e;
}

/* Mobile Accordion */
.mobile-view {
    display: none;
    padding: 20px;
}

.accordion-container {
    max-width: 100%;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    animation: slideUp 0.6s ease both;
    transition: transform 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
}

.accordion-item:nth-child(2) {
    animation-delay: 0.1s;
}

.accordion-header {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    font-weight: 600;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.luxury-accordion {
    background: linear-gradient(135deg, #34443E 0%, #5f6f6a 100%);
    color: white;
}

.elite-accordion {
    background: linear-gradient(135deg, #34443E 0%, #5f6f6a 100%);
    color: white;
    position: relative;
}

.mobile-recommended-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.accordion-header-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.mobile-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 22px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header-text h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: inherit;

}

.accordion-header-text p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 5px 0;
    color: inherit;
}

.toggle-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item.active .toggle-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: #f8fafc;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.features-list {
    padding: 25px;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-name {
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
}

.feature-value {
    text-align: right;
    font-weight: 700;
    color: #1a1a2e;
    min-width: 50px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-view {
        display: none;
    }

    .mobile-view {
        display: block;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 30px;
    }
}