/* Insurance Page Styles */

body {
    background-color: #f5f5f5;
}

.insurance-container {
    background-color: #fff;
    padding: 40px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    line-height: 1.8;
}

.insurance-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #0d6efd;
    margin-bottom: 15px;
}

.insurance-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.disclaimer-section {
    background-color: #f8f9fa;
    border-left: 4px solid #dc3545;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.disclaimer-section p {
    margin: 0;
    color: #333;
    font-size: 15px;
    line-height: 1.7;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-weight: 600;
    color: #0d6efd;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0d6efd;
}

.highlight {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Pricing Tiers Grid Layout */
.pricing-tiers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.pricing-tier {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-tier.basic {
    background: linear-gradient(135deg, #000000 0%, #764ba2 100%);
}

.pricing-tier.standard {
    background: linear-gradient(135deg, #000000 0%, #f5576c 100%);
}

.pricing-tier.enhanced {
    background: linear-gradient(135deg, #000000 0%, #00f2fe 100%);
}

.pricing-tier.premium {
    background: linear-gradient(135deg, #000000 0%, #68f938 100%);
}

.tier-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tier-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tier-coverage {
    font-size: 13px;
    opacity: 0.95;
    margin-bottom: 18px;
}

.tracking-field {
    margin-bottom: 12px;
}

.tracking-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 13px;
}

.tracking-field input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 13px;
    box-sizing: border-box;
}

.tracking-field input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.tracking-field input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coverage-list li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    font-size: 13px;
}

.coverage-list li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
    font-size: 14px;
}

.tier-description {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tier-description strong {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
}

/* Buy Button Styles */
.tier-actions {
    margin-top: 20px;
    text-align: center;
}

.btn-buy {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-buy:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.btn-buy:active {
    transform: translateY(0);
}

/* PayPal Button Container */
#paypal-button-basic,
#paypal-button-premium,
#paypal-button-tier1,
#paypal-button-tier2,
#paypal-button-tier3 {
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Included Text Styling */
.included-text {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Tracking Number Form Styles */
.tracking-numbers-form {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    display: none;
}

.tracking-numbers-form.active {
    display: block;
}

.tracking-numbers-form h5 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 0;
}

.tracking-input-group {
    margin-bottom: 10px;
}

.tracking-input-group label {
    display: block;
    color: white;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 5px;
    opacity: 0.9;
}

.tracking-input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 13px;
    box-sizing: border-box;
}

.tracking-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.tracking-input-group input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.tracking-note {
    color: white;
    font-size: 12px;
    opacity: 0.8;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .pricing-tiers-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .insurance-container {
        padding: 20px;
        margin: 20px auto;
    }

    .insurance-title {
        font-size: 24px;
    }

    .tier-name {
        font-size: 18px;
    }

    .tier-price {
        font-size: 20px;
    }

    .pricing-tier {
        padding: 20px;
    }

    .pricing-tiers-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .insurance-container {
        padding: 15px;
        margin: 15px auto;
        border-radius: 4px;
    }

    .insurance-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .insurance-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 16px;
    }

    .tier-name {
        font-size: 16px;
    }

    .tier-price {
        font-size: 18px;
    }
}
