/* 
===========================================
  PRICING PAGE STYLES
=========================================== 
*/

.pricing-hero-section {
    position: relative;
    padding: 180px 0 100px;
    overflow: hidden;
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.pricing-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-section {
    padding: 0 0 120px;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(160deg, rgba(35, 25, 55, 0.6), rgba(15, 10, 25, 0.9));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(113, 68, 246, 0.15);
    border-color: rgba(204, 243, 71, 0.3);
}

.pricing-card.popular {
    background: linear-gradient(160deg, rgba(50, 30, 80, 0.7), rgba(20, 15, 40, 0.95));
    border: 1px solid rgba(113, 68, 246, 0.5);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(113, 68, 246, 0.25);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-accent);
    color: #000;
    font-family: var(--font-heading);
    font-size: 1rem;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(204, 243, 71, 0.4);
}

.pricing-tier {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: -3px;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
    min-height: 48px;
}

.pricing-price {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    color: var(--green-accent);
    margin-bottom: 25px;
    line-height: 1;
    display: flex;
    align-items: baseline;
    letter-spacing: -4px;
    text-shadow: 0 0 25px rgba(204, 243, 71, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
}

.pricing-price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
    margin-left: 2px;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: none;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.feature-icon {
    margin-right: 12px;
    color: var(--green-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features li.disabled .feature-icon {
    color: rgba(255, 255, 255, 0.2);
}

.feature-name {
    font-weight: 600;
    color: #fff;
    margin-right: 5px;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(204, 243, 71, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.pricing-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: skewX(-25deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.pricing-btn:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(204, 243, 71, 0.8), 0 0 20px rgba(255, 255, 255, 0.5) inset;
    letter-spacing: 1.5px;
    color: #000;
}

.pricing-btn:hover::before {
    left: 150%;
}

.pricing-btn.btn-purple {
    background-color: #A855F7;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
    border: none;
}

.pricing-btn.btn-purple:hover {
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.8), 0 0 20px rgba(255, 255, 255, 0.5) inset;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .pricing-hero-section {
        padding: 140px 0 40px;
    }
}

/* 
===========================================
  CUSTOM PACKAGE CREATOR STYLES
=========================================== 
*/

.custom-package-section {
    padding: 60px 0 120px;
    position: relative;
    z-index: 2;
}

.custom-package-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-option {
    background: linear-gradient(160deg, rgba(35, 25, 55, 0.4), rgba(15, 10, 25, 0.6));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: rgba(113, 68, 246, 0.4);
    background: linear-gradient(160deg, rgba(35, 25, 55, 0.6), rgba(15, 10, 25, 0.8));
    transform: translateY(-3px);
}

.service-option.active {
    border-color: var(--green-accent);
    background: linear-gradient(160deg, rgba(204, 243, 71, 0.05), rgba(15, 10, 25, 0.8));
    box-shadow: 0 10px 20px rgba(204, 243, 71, 0.05);
}

.service-checkbox {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.service-option.active .service-checkbox {
    background: var(--green-accent);
    border-color: #000;
}

.service-option.active .service-checkbox::after {
    content: '';
    width: 6px;
    height: 12px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.service-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.service-name {
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: none;
    letter-spacing: normal;
    font-size: 1.4rem;
    color: var(--text-light);
    margin: 0;
}

.service-price {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.price-type {
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Custom Summary Panel */
.custom-summary {
    background: linear-gradient(160deg, rgba(35, 25, 55, 0.8), rgba(15, 10, 25, 0.95));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(113, 68, 246, 0.3);
    padding: 40px;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.summary-title {
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: none;
    letter-spacing: normal;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.summary-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
}

.summary-value span {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
}

#monthly-total {
    color: var(--green-accent);
    font-size: 2.2rem;
}

#custom-checkout-btn.disabled {
    opacity: 0.5;
    pointer-events: none;
    filter: grayscale(1);
}

@media (max-width: 992px) {
    .custom-package-container {
        grid-template-columns: 1fr;
    }
    
    .custom-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
