/* ===================== PACKAGE REQUEST PAGE ===================== */

body {
    background-color: var(--dark-bg);
}

/* Theme accent colors */
.pr-theme-basic    { --pkg-accent: #C28A4D; --pkg-accent-dark: #8B5A2B; }
.pr-theme-starter  { --pkg-accent: #B8D74A; --pkg-accent-dark: #9BBF2F; }
.pr-theme-business { --pkg-accent: #E5C158; --pkg-accent-dark: #B8860B; }

/* ===================== HERO ===================== */
.pr-hero {
    background: linear-gradient(135deg, #000000 0%, #051508 100%);
    padding: 110px 0 40px;
    border-bottom: 1px solid rgba(184, 215, 74, 0.1);
}

.pr-breadcrumb .breadcrumb {
    background: transparent;
    margin: 0 0 20px;
    padding: 0;
    font-size: 13px;
}

.pr-breadcrumb .breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pr-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-green);
}

.pr-breadcrumb .breadcrumb-item.active {
    color: var(--primary-green);
    font-weight: 600;
}

.pr-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--text-muted);
    font-size: 16px;
}

.pr-title {
    color: #ffffff;
    font-size: 40px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.pr-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0;
}

/* ===================== PACKAGE SELECTOR ===================== */
.pr-selector-section {
    background-color: var(--dark-bg);
    padding: 30px 0;
    border-bottom: 1px solid rgba(184, 215, 74, 0.08);
}

.pr-selector-title {
    color: var(--primary-green);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pr-selector-title i {
    font-size: 18px;
}

.pr-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pr-pkg-tab {
    background: rgba(15, 35, 15, 0.6);
    border: 1.5px solid rgba(184, 215, 74, 0.2);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.pr-pkg-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--pkg-accent) 0%, var(--pkg-accent-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.pr-pkg-tab > * {
    position: relative;
    z-index: 1;
}

.pr-pkg-tab:hover {
    border-color: var(--pkg-accent);
    transform: translateY(-2px);
}

.pr-pkg-tab.is-active {
    border-color: var(--pkg-accent);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.pr-pkg-tab.is-active::before {
    opacity: 0.18;
}

.pr-pkg-tab-badge {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--pkg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pkg-accent);
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.pr-pkg-tab.is-active .pr-pkg-tab-badge {
    background-color: var(--pkg-accent);
    color: #000;
}

.pr-pkg-tab-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pr-pkg-tab-name {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.pr-pkg-tab-best {
    color: var(--text-muted);
    font-size: 11px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pr-pkg-tab-check {
    color: var(--pkg-accent);
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pr-pkg-tab.is-active .pr-pkg-tab-check {
    opacity: 1;
}

/* ===================== CONTENT ===================== */
.pr-content {
    background-color: var(--dark-bg);
    padding: 40px 0 70px;
}

/* ===================== INFO CARD (LEFT) ===================== */
.pr-info-card {
    background: linear-gradient(180deg, rgba(15, 35, 15, 0.85) 0%, rgba(5, 21, 8, 0.95) 100%);
    border: 1px solid rgba(184, 215, 74, 0.25);
    border-radius: 18px;
    padding: 0 0 0;
    position: sticky;
    top: 100px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.pr-info-card.pr-theme-basic    { border-color: rgba(194, 138, 77, 0.45); }
.pr-info-card.pr-theme-starter  { border-color: rgba(184, 215, 74, 0.45); }
.pr-info-card.pr-theme-business { border-color: rgba(229, 193, 88, 0.45); }

.pr-info-ribbon {
    background: linear-gradient(135deg, var(--pkg-accent) 0%, var(--pkg-accent-dark) 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.pr-info-ribbon i {
    background: rgba(0, 0, 0, 0.3);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.pr-info-image {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px 20px;
    text-align: center;
}

.pr-info-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.pr-info-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin: 20px 25px 8px;
    text-align: center;
}

.pr-info-tagline {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    margin: 0 25px 20px;
}

.pr-info-subtitle {
    color: var(--pkg-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 25px 12px;
}

.pr-info-list {
    list-style: none;
    padding: 0 25px;
    margin: 0 0 20px;
    max-height: 240px;
    overflow-y: auto;
}

.pr-info-list::-webkit-scrollbar {
    width: 6px;
}

.pr-info-list::-webkit-scrollbar-thumb {
    background-color: rgba(184, 215, 74, 0.3);
    border-radius: 4px;
}

.pr-info-list li {
    color: #ffffff;
    font-size: 12px;
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pr-info-list li i {
    color: var(--pkg-accent);
    font-size: 13px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Best For block */
.pr-best-for {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 100%);
    border-top: 1px solid rgba(184, 215, 74, 0.15);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.pr-best-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pkg-accent);
    font-size: 26px;
    flex-shrink: 0;
}

.pr-best-for h6 {
    color: var(--pkg-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.pr-best-for p {
    color: #ffffff;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* ===================== FORM CARD (RIGHT) ===================== */
.pr-form-card {
    background: linear-gradient(180deg, rgba(15, 35, 15, 0.6) 0%, rgba(5, 21, 8, 0.85) 100%);
    border: 1px solid rgba(184, 215, 74, 0.2);
    border-radius: 18px;
    padding: 30px 32px;
}

.pr-form-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pr-divider {
    width: 50px;
    height: 3px;
    background-color: var(--primary-green);
    margin-bottom: 25px;
}

/* Sections */
.pr-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px dashed rgba(184, 215, 74, 0.15);
}

.pr-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.pr-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.pr-section-num {
    background-color: var(--primary-green);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

.pr-section-title h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0;
}

/* Labels & Inputs */
.pr-label {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    display: block;
}

.req {
    color: #ff6b6b;
}

.pr-input-wrap {
    position: relative;
}

.pr-input-wrap > i {
    position: absolute;
    left: 14px;
    top: 14px;
    color: var(--primary-green);
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
}

.pr-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(184, 215, 74, 0.25);
    color: #ffffff;
    padding: 11px 14px 11px 40px;
    border-radius: 10px;
    font-size: 13px;
    width: 100%;
    transition: all 0.3s ease;
}

.pr-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.pr-input:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-green);
    color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 215, 74, 0.12);
}

.pr-textarea {
    padding-top: 12px;
    resize: vertical;
    min-height: 100px;
}

select.pr-input {
    cursor: pointer;
}

select.pr-input option {
    background-color: #0a1f0a;
    color: #ffffff;
}

/* Phone group */
.pr-phone-group {
    display: flex;
    gap: 8px;
}

.pr-country-code {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(184, 215, 74, 0.25);
    color: #ffffff;
    padding: 11px 12px;
    border-radius: 10px;
    font-size: 13px;
    width: 80px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pr-country-code:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-green);
    outline: none;
    box-shadow: 0 0 0 3px rgba(184, 215, 74, 0.12);
}

.pr-phone-input {
    flex: 1;
    padding-left: 14px;
}

/* Radio pills */
.pr-radio-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pr-radio-pill {
    flex: 1;
    min-width: 90px;
    cursor: pointer;
    margin: 0;
}

.pr-radio-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pr-radio-pill span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(184, 215, 74, 0.25);
    border-radius: 10px;
    padding: 11px 16px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pr-radio-pill:hover span {
    border-color: rgba(184, 215, 74, 0.5);
    color: var(--primary-green);
}

.pr-radio-pill input:checked + span {
    background-color: rgba(184, 215, 74, 0.15);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* Conditional package fields */
.pr-field-basic,
.pr-field-starter,
.pr-field-business {
    display: none;
}

.pr-show-basic .pr-field-basic,
.pr-show-starter .pr-field-starter,
.pr-show-business .pr-field-business {
    display: block;
}

/* Submit */
.pr-submit {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: #000;
    border: none;
    width: 100%;
    padding: 16px 24px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    margin-top: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}

.pr-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 215, 74, 0.4);
}

.pr-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.pr-submit i {
    font-size: 18px;
}

.pr-form-footer {
    color: var(--text-muted);
    font-size: 11px;
    text-align: center;
    margin-top: 18px;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Error state */
.pr-input.is-error,
.pr-country-code.is-error,
.pr-radio-row.is-error .pr-radio-pill span {
    border-color: #ff6b6b !important;
}

/* Scroll to top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-green);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 215, 74, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
    .pr-info-card {
        position: static;
    }

    .pr-title {
        font-size: 32px;
    }

    .pr-selector {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .pr-hero {
        padding: 100px 0 30px;
    }

    .pr-title {
        font-size: 26px;
    }

    .pr-form-card {
        padding: 22px 18px;
    }

    .pr-radio-pill {
        min-width: 100%;
    }

    .pr-pkg-tab-best {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .pr-title {
        font-size: 22px;
    }

    .pr-form-title {
        font-size: 16px;
    }

    .pr-section-title h4 {
        font-size: 13px;
    }
}
