/* Pricing Page Specific Styles */

/* Add styles relevant only to pricing.html here */
/* Placeholder - Add specific pricing table styles if they exist */

.pricing-option.popular-plan {
    border-color: var(--primary-link-hover-color); /* Brighter blue border */
    box-shadow: 0 0 15px var(--primary-link-hover-color); /* Subtle glow effect */
    position: relative; /* Needed for badge positioning */
    overflow: hidden; /* To contain the badge if it's a corner ribbon */
}

.most-popular-badge {
    position: absolute;
    top: -1px; /* Adjust to align with border */
    right: -1px; /* Adjust to align with border */
    background-color: var(--primary-link-hover-color); /* Brighter blue */
    color: var(--text-color);
    padding: 8px 12px;
    font-size: 0.9em;
    font-weight: bold;
    border-top-right-radius: 8px; /* Match card's border-radius */
    border-bottom-left-radius: 8px;
    /* Small triangle effect - optional */
    /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%); */
    line-height: 1.2;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Alternative banner style - more prominent */
/* .most-popular-badge {
    position: absolute;
    top: 15px; 
    right: -35px; 
    background-color: var(--primary-link-hover-color);
    color: var(--text-color);
    padding: 5px 30px;
    font-size: 0.9em;
    font-weight: bold;
    transform: rotate(45deg);
    transform-origin: top right;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1.2;
    z-index: 1;
    width: 150px; 
    text-align: center;
} */

/* Ensure the badge is above other content within the card if any overlap */
.pricing-option.popular-plan h3 {
    position: relative;
    z-index: 0; /* Or adjust if elements overlap weirdly */
}

/* Form result message styles */
#contact-form-result {
    padding: 10px;
    border-radius: 4px;
    margin-top: 15px;
    font-weight: 500;
}

#contact-form-result.success-message {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

#contact-form-result.error-message {
    background-color: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

#contact-form-result.info-message {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

/* Enterprise Contact Modal Styles */
#enterprise-contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 18, 20, 0.85);
    backdrop-filter: blur(5px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#enterprise-contact-modal.active {
    opacity: 1;
}

#enterprise-contact-modal .modal-content {
    background-color: rgba(26, 31, 36, 0.75);
    padding: 35px 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 600px;
    position: relative;
    text-align: left;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}

#enterprise-contact-modal.active .modal-content {
    transform: scale(1);
}

#enterprise-contact-modal .modal-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.6rem;
    color: var(--text-color);
    text-align: center;
}

#enterprise-contact-modal .modal-content p {
    margin-bottom: 25px;
    color: rgba(240, 240, 240, 0.8);
    line-height: 1.6;
    text-align: center;
}

/* Close button styling - positioned in upper right corner */
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    font-weight: normal;
    color: rgba(240, 240, 240, 0.6);
    background: none !important;
    border: none !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    box-shadow: none !important;
    cursor: pointer;
    transition: color 0.2s ease;
    line-height: 1;
    z-index: 1;
}

.modal-close-btn:hover {
    color: var(--text-color);
    background: none !important;
}

/* Form styling within modal */
#enterprise-contact-form {
    margin-top: 20px;
}

#enterprise-contact-form .form-group {
    margin-bottom: 20px;
}

#enterprise-contact-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

#enterprise-contact-form input,
#enterprise-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background-color: var(--input-bg-color);
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#enterprise-contact-form input:focus,
#enterprise-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-link-hover-color);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

#enterprise-contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Modal actions (buttons) */
.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 25px;
}

.modal-actions .button {
    padding: 10px 25px;
    min-width: 120px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.modal-actions .button-secondary {
    background-color: #6c757d;
    color: white;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.2);
}

.modal-actions .button-secondary:hover {
    background-color: #5a6268;
    box-shadow: 0 6px 16px rgba(108, 117, 125, 0.3);
}

.modal-actions .button-primary {
    background-color: var(--primary-link-hover-color);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.modal-actions .button-primary:hover {
    background-color: var(--primary-link-color);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
} 