/* Card */
.vip-compact-card {
    background: #fafafa;
    border: 1px solid #9e9999;
    border-radius: 18px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.35s ease;
}

.vip-compact-card:hover {
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #cc1b25;
}

/* Header */
.card-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.badge-cat {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #777;
}

/* Status */
.status-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-hot {
    background: #fff1f1;
    color: #cc1b25;
}

/* Number */
.number-display-box {
    background: #fafafa;
    border-radius: 10px;
    padding: 12px 6px;
    margin-bottom: 12px;
}

.vip-main-number {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    margin: 0;
}

.num-prefix {
    color: #111;
}

.num-highlight {
    color: #cc1b25;
}

/* Numerology */
.sum-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
}

.sum-label {
    font-size: 11px;
    font-weight: 700;
    color: #aaa;
}

.sum-calc {
    font-weight: 700;
    color: #333;
}

.sum-root-circle {
    background: #111;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Price */
.price-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 16px 0 18px;
}

.old-price {
    font-size: 14px;
    color: #9a9a9a;
    text-decoration: line-through;
}

.discount-pill {
    background: #ffeaea;
    color: #cc1b25;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.selling-price {
    font-size: 24px;
    font-weight: 900;
    color: #111;
}

/* Buttons */
.card-actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-outline-details {
    border: 1px solid #ddd;
    color: #333;
    font-weight: 700;
    border-radius: 10px;
    padding: 11px 0;
    text-decoration: none;
}

.btn-outline-details:hover {
    background: #f7f7f7;
}

.btn-fill-inquiry {
    background: #cc1b25;
    color: #fff;
    border-radius: 10px;
    padding: 11px 0;
    font-weight: 700;
    text-decoration: none;
    border: none;
}

.btn-fill-inquiry:hover {
    background: #000000;
    color: #fff;
}

/* View All Card */
.view-all-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 280px;
    border: 2px dashed #ddd;
    border-radius: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.view-all-card:hover {
    border-color: #cc1b25;
    background: #fff6f6;
}

.view-all-icon {
    width: 60px;
    height: 60px;
    background: #cc1b25;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.view-all-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.view-all-content p {
    font-size: 14px;
    color: #777;
}

/* Call Now Button */
.call-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #cf1925;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.call-now-btn:hover {
    background: #cf1925;
    color: #fff;
}

.call-now-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.call-now-icon svg {
    width: 16px;
    height: 16px;
    fill: #fff;
}

.call-now-text {
    display: inline-block;
}

/* Center modal with smoother look */
#inquiryModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Modal header */
#inquiryModal .modal-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.25rem;
}

#inquiryModal .modal-title {
    font-weight: 600;
    font-size: 2.1rem;
}

/* Modal body */
#inquiryModal .modal-body {
    padding: 1.25rem;
}

/* Form labels */
#inquiryModal .form-label {
    font-weight: 500;
    margin-bottom: 0.4rem;
}

/* Input fields */
#inquiryModal .form-control {
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
    font-size: 1.95rem;
}

/* Input focus */
#inquiryModal .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

/* Modal footer */
#inquiryModal .modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 0.75rem 1.25rem;
}

/* Buttons */
#inquiryModal .btn {
    border-radius: 8px;
    padding: 0.45rem 1rem;
    font-size: 1.9rem;
}

/* Submit button emphasis */
#inquiryModal .btn-primary {
    font-weight: 500;
}

/* Responsive tweak */
@media (max-width: 576px) {
    #inquiryModal .modal-dialog {
        margin: 1rem;
    }
}

.vip-preview-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.vip-preview-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* Overlay */
.vip-preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

/* Number */
.vip-preview-number {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.vip-preview-number .num-prefix {
    opacity: 0.85;
}

.vip-preview-number .num-highlight {
    color: #ffcc00;
}

/* Meta */
.vip-preview-meta {
    display: flex;
    gap: 24px;
    align-items: center;
}

/* VIP Number Display Card - Product Details Page */
.vip-number-display-card {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    padding: 40px 30px;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vip-number-display-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #1a1a2e;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.vip-badge svg {
    width: 18px;
    height: 18px;
}

.vip-number-main {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.vip-prefix {
    color: rgba(255, 255, 255, 0.7);
}

.vip-highlight {
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.vip-remaining {
    color: rgba(255, 255, 255, 0.85);
}

.vip-number-full {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 3px;
    font-weight: 500;
}

/* Decorative Elements */
.vip-card-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.decoration-circle.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ffd700, transparent);
    top: -100px;
    right: -100px;
}

.decoration-circle.circle-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00d4ff, transparent);
    bottom: -50px;
    left: -50px;
}

.decoration-circle.circle-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #ff6b6b, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .vip-number-display-card {
        min-height: 320px;
        padding: 35px 25px;
        margin-bottom: 30px;
    }

    .vip-number-main {
        font-size: 40px;
        letter-spacing: 3px;
    }
}

@media (max-width: 767px) {
    .vip-number-display-card {
        min-height: 280px;
        padding: 30px 20px;
    }

    .vip-number-main {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .vip-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 25px;
    }

    .vip-number-full {
        font-size: 16px;
        letter-spacing: 2px;
    }
}

@media (max-width: 480px) {
    .vip-number-display-card {
        min-height: 240px;
        border-radius: 16px;
    }

    .vip-number-main {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .vip-number-full {
        font-size: 14px;
    }
}
