/* Custom styles for proposal page */

body {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.proposal-container {
    padding: 2rem 0;
    min-height: 100vh;
}

.header-section {
    margin-bottom: 2rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.proposal-text {
    line-height: 1.8;
    font-size: 1.1rem;
}

.proposal-text h2, .proposal-text h3, .proposal-text h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.proposal-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.feature-list li:last-child {
    border-bottom: none;
}

.bonus-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--bs-warning);
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin-left: 1rem;
}

.bonus-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-cards {
    margin: 2rem 0;
}

.price-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.price-card.recommended {
    border-color: var(--bs-success);
    background: rgba(25, 135, 84, 0.1);
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--bs-primary);
    margin: 1rem 0;
}

.price .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: normal;
}

.included-list {
    list-style: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--bs-success);
}

.included-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
}

.conclusion-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.signature-section {
    margin-top: 3rem;
}

.signature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: inline-block;
    min-width: 300px;
}

.action-section {
    margin-top: 3rem;
    padding-top: 2rem;
}

/* Bonus Highlight Box Styles */
.bonus-highlight-box {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 3px solid #ffc107;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    animation: pulse 2s infinite;
    margin: 2rem 0;
}

.bonus-title {
    color: #333;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
    white-space: nowrap;
}

.bonus-title i {
    color: #ffc107;
    font-size: 1.3rem;
}

.gift-emoji {
    font-size: 1.4rem;
    animation: bounce 2s infinite;
    display: inline-block;
    flex-shrink: 0;
}

.bonus-text-content {
    flex: 1;
    min-width: 0;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Additional responsive breakpoint for medium screens */
@media (max-width: 992px) and (min-width: 769px) {
    .bonus-title {
        font-size: 1.4rem;
        gap: 0.6rem;
    }
    
    .gift-emoji {
        font-size: 1.3rem;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .content-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .proposal-text {
        font-size: 1rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .signature-card {
        min-width: auto;
        width: 100%;
    }
    
    .bonus-highlight-box {
        padding: 1.25rem 1rem;
        margin: 1.5rem 0;
    }
    
    .bonus-title {
        font-size: 1.3rem;
        text-align: center;
        justify-content: center;
        white-space: normal;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .proposal-container {
        padding: 1rem 0;
    }
    
    .content-card {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .header-section h1 {
        font-size: 1.75rem;
    }
    
    .bonus-section, .included-list {
        padding: 1rem;
    }
    
    .bonus-highlight-box {
        padding: 1rem 0.75rem;
        margin: 1rem 0;
        border-radius: 10px;
    }
    
    .bonus-title {
        font-size: 1.1rem;
        line-height: 1.4;
        flex-direction: row;
        gap: 0.5rem;
        white-space: normal;
        flex-wrap: wrap;
    }
    
    .bonus-title i {
        font-size: 1.2rem;
    }
    
    .gift-emoji {
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .action-section .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .action-section .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
}

/* Print styles */
@media print {
    body {
        background: white !important;
        color: black !important;
    }
    
    .content-card {
        background: white !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
    
    .action-section {
        display: none;
    }
}

/* Accessibility improvements */
.proposal-text a:focus,
.btn:focus {
    outline: 2px solid var(--bs-primary);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--bs-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bs-primary-dark);
}