/* Pricing Page Bootstrap Styles */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
}

/* Transparent Pricing Section */
.transparent-pricing-section {
    background: linear-gradient(180deg, #E8F2FF 0%, #F8FBFF 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.transparent-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #0047AB;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.transparent-title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: #000;
    text-align: left;
    margin-bottom: 1.5rem;
}

.transparent-description {
    text-align: left;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Customizable Timeshare Section */
.customizable-section {
    background: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.customizable-badge {
    display: inline-block;
    color: #0047AB;
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.customizable-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    text-align: left;
    margin-bottom: 2rem;
}

.customizable-description {
    text-align: left;
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
}

.customizable-description p {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Benefits and Pricing Section */
.benefits-pricing-section {
    min-height: 90vh;
    background-attachment: fixed;
}

.benefits-bg {
    background-image: url('/images/creators-banner.jpg');
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #FFF;
    margin-bottom: 2rem;
}

.benefits-cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-card {
    background: #ffffff;
    border: 1px solid #D4DCED;
    border-radius: 18px;
    padding: 24px;
    height: 100%;
}

.benefit-card-title {
    color: #0047AB;
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card-text {
    color: #000;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.icon-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(133deg, #D4DCED 100%);
    border-radius: 13px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-shape {
    width: 20px;
    height: 20px;
    background: #0047AB;
    border-radius: 50%;
    position: relative;
}

.icon-shape::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #0047AB;
    border-radius: 50%;
    top: -2px;
    right: -2px;
}

.icon-shape::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 2px;
    background: #0047AB;
    border-radius: 1px;
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
}

/* Pricing Table */
.pricing-table-container {
    
    border-radius: 8px;
    padding: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: none;
}

.pricing-table-header {
    background: #E0E6F7;
    color: #333333;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 1rem;
    margin: 0;
    border: none;
    font-family: Arial, Helvetica, sans-serif;
}

.pricing-table {
    border-collapse: separate;
    border-spacing: 4px;
    background: transparent;
    width: 100%;
    margin-bottom: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.pricing-table td,
.pricing-table th {
    border: 2px solid transparent;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}

.pricing-table th {
    background-color: #DAE5FE;
    font-weight: bold;
    color: #333333;
    font-size: 0.9rem;
}

.pricing-table td {
    color: #333333;
    font-weight: 400;
    font-size: 0.9rem;
    vertical-align: middle;
}

.pricing-table td.contract-term {
    background-color: rgba(232, 232, 232, 0.8);
    font-weight: 400;
}

.pricing-table td:last-child {
    background-color: rgba(232, 232, 232, 0.8);
}


/* Calculator Section */
.calculator-section {
    min-height: 100vh;
    background-attachment: fixed;
}

.calculator-bg {
    background-image: url('/images/creators-banner.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    transform: scale(1.1);
}

.calculator-badge {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #0047AB;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    cursor: pointer;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Token Slider */
.token-slider-section {
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    height: 40px;
    /* margin-bottom: 20px; */
    cursor: pointer;
    user-select: none;
    overflow: visible;
}

.slider-track {
    width: 100%;
    height: 8px;
    background: #E0E6F7;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background-color 0.2s ease;
}

.tier-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 12px;
    /* background: #0047AB; */
    border-radius: 2px;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.tier-marker:hover {
    opacity: 1;
}

.slider-container:hover .slider-track {
    background: #D0D6E7;
}

.slider-fill {
    width: 60%;
    height: 8px;
    background: #0047AB;
    border-radius: 4px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: width 0.1s ease;
}

.slider-handle {
    width: 180px;
    height: 40px;
    background: #0047AB;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: grab;
    transition: left 0.1s ease, transform 0.2s ease;
    user-select: none;
    box-shadow: 0 2px 8px rgba(0, 71, 171, 0.3);
}

.slider-handle:active {
    cursor: grabbing;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.5);
}

.slider-handle:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 3px 10px rgba(0, 71, 171, 0.4);
}

.slider-handle.dragging {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.5);
}

/* Discount Selector */
.discount-selector {
    /* margin-top: 20px; */
}

.discount-label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.discount-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.discount-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 60px;
}

.discount-option:hover {
    background: rgba(0, 71, 171, 0.1);
}

.discount-triangle {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid #ccc;
    margin-bottom: 5px;
    transition: border-bottom-color 0.3s ease;
}

.discount-option.active .discount-triangle {
    border-bottom-color: #0047AB;
}

.discount-option span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.discount-option.active span {
    color: #0047AB;
    font-weight: 600;
}

/* Pricing Cards */
.pricing-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.pricing-card {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-card .card-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    font-weight: 500;
}

.pricing-card .card-value {
    font-size: 1.8rem;
    color: #0047AB;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .card-subtitle {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.3;
}

/* Price Breakdown */
.price-breakdown {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.breakdown-item.total {
    margin-bottom: 0;
}

.breakdown-label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.breakdown-value {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.breakdown-item.total .breakdown-label {
    font-size: 1.2rem;
    color: #0047AB;
    font-weight: 700;
}

.breakdown-item.total .breakdown-value {
    font-size: 2rem;
    color: #0047AB;
    font-weight: 700;
}

.breakdown-line {
    width: 100%;
    height: 2px;
    background: #E0E6F7;
    margin: 15px 0;
    border-radius: 1px;
}

/* Buy Button */
.buy-button {
    background: #0047AB;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.buy-button:hover {
    background: #003d99;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 71, 171, 0.3);
    color: white;
    text-decoration: none;
}

/* Comparison Section */
.comparison-section {
    background: #f8f9fa;
    min-height: 100vh;
}

.comparison-badge {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: #0047AB;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.comparison-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 2rem;
}

.comparison-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
    /* border: 1px solid #e9ecef; */
    position: relative;
}

/* Header Row */
.comparison-header-row {
    display: flex;
    background: #fff;
}

.comparison-header-left {
    flex: 1;
    padding: 25px;
    background: #fff;
    border-right: 1px solid #e9ecef;
}

.comparison-header-right {
    flex: 1;
    padding: 25px;
    background: #DAE5FE;
    position: relative;
}

.comparison-header-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.comparison-header-left .comparison-header-title {
    color: #666;
}

.comparison-header-right .comparison-header-title {
    color: #0047AB;
}

.comparison-header-price {
    font-size: 1.5rem;
    font-weight: 600;
}

.comparison-header-left .comparison-header-price {
    color: #666;
}

.comparison-header-right .comparison-header-price {
    color: #000;
}

.comparison-header-right .comparison-header-price strong {
    color: #0047AB;
}

/* Scrollable Items Container */
.comparison-items-container {
    /* max-height: 500px; */
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa !important
}

.comparison-item-row {
    display: flex;
    align-items: center;
    margin-bottom: 7px;

    /* background: #DAE5FE; */

    
}

.comparison-item-row:last-child {
    margin-bottom: 0;
}

.comparison-item-left {
    flex: 1;
    background: white;
    border-radius: 12px 0px 0px 12px;
    padding: 20px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-item-right {
    border-radius: 0px 12px 12px 0px;
    background: #DAE5FE;
    flex: 1;
    padding: 20px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-item-text {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #333;
    margin: 0;
    font-weight: 500;
}

.comparison-item-text strong {
    font-weight: 700;
    color: #333;
}

.highlighted-text {
    color: #0047AB;
    font-weight: 700;
    text-decoration: underline;
}

/* Arrow */
#arrow-main {
    display: none;
    width: 10px;
    height: 84px;
    background-color: #ffffff;
    position: relative;
}

.arrow-right {
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-bottom: 40px solid transparent; /* 40px height (20+20) */
    border-left: 40px solid #fff;
    position: absolute;
    right: -40px;
}

/* Blue Accent Bar */
.comparison-accent-bar {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #0047AB;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-header {
        flex-direction: column;
    }
    
    .comparison-header-left,
    .comparison-header-right {
        border-right: none;
        border-bottom: 2px solid #E0E6F7;
    }
    
    .comparison-header-right::after {
        display: none;
    }
    
    .comparison-row {
        flex-direction: column;
    }
    
    .comparison-cell-left,
    .comparison-cell-right {
        border-right: none;
        border-bottom: 1px solid #E0E6F7;
    }
    
    .comparison-cell-right::after {
        display: none;
    }
    
    .comparison-title {
        font-size: 2rem;
    }
    
    .comparison-header-title {
        font-size: 1.3rem;
    }
    
    .comparison-header-price {
        font-size: 1.5rem;
    }
}

/* CTA Section */
.cta-section {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .slider-handle {
        width: 120px !important;
        height: 30px !important;
        font-size: 0.875rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Comparison Section Mobile Responsive */
    .comparison-container {
        padding: 1.5rem;
        margin: 0 -15px;
    }
    
    .comparison-header {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .comparison-header-left,
    .comparison-header-right {
        border-right: none;
        border-bottom: 2px solid #E0E6F7;
        padding: 1rem;
        text-align: center;
    }
    
    .comparison-header-right {
        border-bottom: none;
    }
    
    .comparison-items-container {
        max-height: none;
        padding: 1rem;
    }
    
    .comparison-item-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .comparison-item-left,
    .comparison-item-right {
        border-radius: 12px !important;
        width: 100%;
        height: auto;
        min-height: 60px;
    }
    
    /* Hide arrows on mobile */
    #arrow-main {
        display: none;
    }
    
    .comparison-accent-bar {
        display: none;
    }
    
    /* Calculator Section Mobile Responsive */
    .calculator-section {
        padding: 2rem 0;
    }
    
    .calculator-card {
        padding: 1.5rem;
    }
    
    .token-slider-section {
        margin-bottom: 2rem;
    }
    
    .slider-container {
        margin-bottom: 1.5rem;
    }
    
    .slider-handle {
        width: 100px !important;
        height: 25px !important;
        font-size: 0.75rem !important;
    }
    
    .discount-selector {
        flex-direction: column;
        gap: 1rem;
    }
    
    .discount-label {
        display: none;
    }
    
    .discount-options {
        display: none;
    }
    
    .discount-option {
        min-width: 60px;
        font-size: 0.8rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 0.9rem;
    }
    
    .card-value {
        font-size: 1.5rem;
    }
    
    .card-subtitle {
        font-size: 0.8rem;
    }
    
    .price-breakdown {
        padding: 1rem;
    }
    
    .breakdown-item {
        font-size: 0.9rem;
    }
    
    .breakdown-value {
        font-size: 1rem;
    }
    
    .buy-button {
        width: 100%;
        max-width: 300px;
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    /* Additional Mobile Improvements */
    .calculator-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    
    .tier-marker {
        width: 8px;
        height: 8px;
    }
    
    .slider-track {
        height: 6px;
    }
    
    .slider-fill {
        height: 6px;
    }
    
    .discount-triangle {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .table-responsive {
        font-size: 0.75rem;
    }
    
    .slider-handle {
        width: 100px !important;
        height: 25px !important;
        font-size: 0.75rem;
    }
    
    /* Calculator Section for Very Small Screens */
    .calculator-section {
        padding: 1.5rem 0;
    }
    
    .calculator-card {
        padding: 1rem;
    }
    
    .slider-handle {
        width: 80px !important;
        height: 20px !important;
        font-size: 0.65rem !important;
    }
    
    .discount-option {
        min-width: 50px;
        font-size: 0.7rem;
        padding: 8px 12px;
    }
    
    .pricing-card {
        padding: 0.75rem;
    }
    
    .card-title {
        font-size: 0.8rem;
    }
    
    .card-value {
        font-size: 1.25rem;
    }
    
    .card-subtitle {
        font-size: 0.7rem;
    }
    
    .price-breakdown {
        padding: 0.75rem;
    }
    
    .breakdown-item {
        font-size: 0.8rem;
    }
    
    .breakdown-value {
        font-size: 0.9rem;
    }
    
    .buy-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    /* Additional Mobile Improvements for Small Screens */
    .calculator-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .tier-marker {
        width: 6px;
        height: 6px;
    }
    
    .slider-track {
        height: 4px;
    }
    
    .slider-fill {
        height: 4px;
    }
    
    .discount-triangle {
        width: 6px;
        height: 6px;
    }
    
    .breakdown-line {
        margin: 0.5rem 0;
    }
    
    /* Comparison Section for Very Small Screens */
    .comparison-container {
        padding: 1rem;
        margin: 0 -10px;
    }
    
    .comparison-header {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .comparison-header-left,
    .comparison-header-right {
        padding: 0.75rem;
    }
    
    .comparison-title {
        font-size: 1.5rem;
    }
    
    .comparison-header-title {
        font-size: 1rem;
    }
    
    .comparison-header-price {
        font-size: 1.2rem;
    }
    
    .comparison-items-container {
        padding: 0.75rem;
    }
    
    .comparison-item-row {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .comparison-item-left,
    .comparison-item-right {
        min-height: 50px;
        padding: 15px;
    }
    
    .comparison-item-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}