:root {
    --primary-purple: #6366f1;
    --light-purple: #e0e7ff;
    --medium-purple: #c7d2fe;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --background-light: #f8fafc;
    --teal-color: #06b6d4;
}
.pricing-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 30px;
}

.location-section {
    text-align: center;
    margin-bottom: 30px;
}

.location-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.location-select {
    max-width: 200px;
    margin: 0 auto;
    padding: 8px 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    font-size: 0.9rem;
}

.options-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.radio-custom {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    position: relative;
    cursor: pointer;
}

.radio-custom.checked {
    border-color: var(--text-dark);
    background: var(--text-dark);
}

.radio-custom.checked::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pricing-table {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
}

.pricing-row {
    display: flex;
    padding: 15px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.1);
}

.item-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.item-price {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    min-width: 60px;
    text-align: right;
}

.cta-section {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.cta-content {
    display: flex;
    align-items: center;
    padding: 0;
}

.cta-image {
    flex: 1;
    height: 250px;
    background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=400&h=250&fit=crop&crop=face') center/cover;
    position: relative;
}

.cta-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.cta-text {
    flex: 1;
    padding: 40px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.cta-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
}

.btn-search {
    background: var(--primary-purple) !important;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .options-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .pricing-row {
        padding: 12px 20px;
    }

    .cta-content {
        flex-direction: column;
    }

    .cta-image {
        width: 100%;
        height: 200px;
    }

    .cta-text {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .pricing-section {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .pricing-row {
        padding: 10px 15px;
    }

    .item-name, .item-price {
        font-size: 0.9rem;
    }

    .cta-text {
        padding: 25px 15px;
    }

    .cta-title {
        font-size: 1.3rem;
    }

    .cta-subtitle {
        font-size: 0.9rem;
    }
}

