/* Contact Us Page Styles */

.contact-us-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    margin-bottom: 150px;
    /* Match ink toner section background likely */
}

/* Sidebar Styles - Reusing catalog-sidebar classes but ensuring specific adjustments if needed */
.customer-service-sidebar .card-header {
    background: linear-gradient(135deg, #232f3e 0%, #3a4b60 100%);
    /* Assuming this is the header color */
}

/* Contact Form Styles - Matching Ink Toner premium look */
.contact-form-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Soft premium shadow */
    border: none;
}

.contact-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
}

.contact-info-header {
    margin-bottom: 30px;
}

.contact-info-header h2 {
    font-weight: 700;
    color: #232f3e;
}

.contact-info-header p {
    color: #666;
    font-size: 14px;
}

.contact-input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    background-color: #fff;
    padding: 0 15px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.contact-input:focus {
    outline: none;
    border-color: #00a8e8;
    box-shadow: 0 0 0 0.25rem rgba(0, 168, 232, 0.25);
}

.contact-textarea {
    height: 120px;
    padding-top: 15px;
    resize: vertical;
}

.contact-btn {
    width: auto;
    min-width: 150px;
    height: 50px;
    background: linear-gradient(135deg, #232f3e 0%, #3a4b60 100%);
    /* Match theme dark button */
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1a232e 0%, #2c3949 100%);
}

/* Horizontal Form Layout specific - MODIFIED */
.form-horizontal-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.form-horizontal-label {
    width: 100%;
    text-align: left;
    padding-right: 0;
    padding-bottom: 8px;
    font-weight: 500;
    color: #333;
    margin-bottom: 0;
}

.form-horizontal-input {
    width: 100%;
    flex: none;
}

/* New styles for two-column layout */
.two-column-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.two-column-field {
    flex: 1;
}

/* Sidebar Active State mimicking hover */
.catalog-sidebar .list-group-item a.active {
    color: #00a8e8;
    font-weight: 600;
    background-color: #f8f9fa;
}

.faq-navigation {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    border-left: 4px solid #232f3e;
}

.faq-navigation-title {
    font-size: 18px;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.faq-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-link {
    display: inline-block;
    padding: 10px 15px;
    background-color: white;
    border-radius: 6px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-link:hover {
    background-color: #232f3e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* FAQ Content Styles */
.faq-content {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 15px;
    padding-top: 10px;
    font-family: 'Outfit', sans-serif;
    /* Smooth scroll offset for anchor links */
    scroll-margin-top: 20px;
}

.faq-answer {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer strong {
    color: #333;
    font-weight: 600;
}

.order-form-container {
    margin-top: 20px;
}

.order-form-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: none;
}

.order-form-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #232f3e;
    margin-bottom: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
}

.order-form-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.order-status-form {
    width: 100%;
}

.order-form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.order-form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.order-form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 15px;
    display: block;
}

.order-form-input {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ced4da;
    background-color: #fff;
    padding: 0 15px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.order-form-input:focus {
    outline: none;
    border-color: #00a8e8;
    box-shadow: 0 0 0 0.25rem rgba(0, 168, 232, 0.25);
}

.order-form-help {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    margin-bottom: 0;
    font-style: italic;
}

.order-form-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.order-form-submit-btn {
    width: auto;
    min-width: 150px;
    height: 50px;
    background: linear-gradient(135deg, #232f3e 0%, #3a4b60 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0 30px;
}

.order-form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1a232e 0%, #2c3949 100%);
}

.order-form-submit-btn:active {
    transform: translateY(0);
}

.signup-now-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #232f3e 0%, #3a4b60 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    text-align: center;
}

.signup-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1a232e 0%, #2c3949 100%);
    color: #fff;
    text-decoration: none;
}

.signup-now-btn:active {
    transform: translateY(0);
}
.careers-container {
    padding: 40px 0;
}

.careers-header {
    font-size: 36px;
    font-weight: 700;
    color: #232f3e;
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.careers-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.careers-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.careers-icon-container {
    background: linear-gradient(135deg, #232f3e 0%, #3a4b60 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-icon {
    color: white;
    width: 60px;
    height: 60px;
}

.careers-content {
    flex: 1;
}

.careers-title {
    font-size: 24px;
    font-weight: 600;
    color: #232f3e;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.careers-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.careers-cta {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #00a8e8;
}

.careers-email-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.careers-email-link {
    display: inline-block;
    margin-left: 10px;
    color: #00a8e8;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
}

.careers-email-link:hover {
    color: #0091c7;
    text-decoration: underline;
}

.careers-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
}

.benefit-icon {
    color: #00a8e8;
    font-weight: bold;
    margin-right: 8px;
    font-size: 16px;
}

.benefit-text {
    color: #333;
    font-weight: 500;
}

.careers-apply-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, #232f3e 0%, #3a4b60 100%);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.careers-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #1a232e 0%, #2c3949 100%);
    color: #fff;
    text-decoration: none;
}

.careers-apply-btn:active {
    transform: translateY(0);
}

/* Responsive Design */


/* Responsive adjustments for smaller screens */


/* Affiliate Form Styles */
.affiliate-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.affiliate-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.affiliate-col.small {
    flex: 0.3;
    /* For middle name if needed, or just let it be flex 1 */
}

/* Adjusting label for affiliate form to sit on top of input */
.affiliate-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.affiliate-input {
    width: 100%;
    height: 45px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    background-color: #fff;
    padding: 0 12px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.affiliate-input:focus {
    outline: none;
    border-color: #00a8e8;
    box-shadow: 0 0 0 0.2rem rgba(0, 168, 232, 0.2);
}

.affiliate-select {
    width: 100%;
    height: 45px;
    border-radius: 6px;
    border: 1px solid #ced4da;
    background-color: #fff;
    padding: 0 12px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

.affiliate-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.affiliate-btn-row {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.affiliate-btn {
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-save {
    background-color: #232f3e;
    color: white;
}

.btn-save:hover {
    background-color: #1a232e;
}

.btn-cancel {
    background-color: #6c757d;
    color: white;
}

.btn-cancel:hover {
    background-color: #5a6268;
}
 .careers-card {
        flex-direction: column;
        padding: 25px;
        gap: 25px;
    }
    
    .careers-header {
        font-size: 28px;
    }
    
    .careers-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .careers-icon-container {
        align-self: center;
    }
    
    .careers-benefits {
        flex-direction: column;
    }
    
    .careers-cta {
        padding: 20px;
    }
.promos-specials-container {
    padding: 50px 0;
    text-align: center;
}

.promos-header {
    font-size: 42px;
    font-weight: 700;
    color: #232f3e;
    margin-bottom: 30px;
    position: relative;
    font-family: 'Outfit', sans-serif;
}

.promos-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #232f3e, #00a8e8, #232f3e);
    border-radius: 2px;
}

.promos-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 20px;
    padding: 50px 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 168, 232, 0.1);
    position: relative;
    overflow: hidden;
}

.promos-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #232f3e, #00a8e8, #232f3e);
}

.promos-icon-wrapper {
    margin-bottom: 25px;
}

.promos-icon {
    color: #232f3e;
    opacity: 0.9;
    filter: drop-shadow(0 4px 6px rgba(35, 47, 62, 0.1));
}

.promos-content {
    position: relative;
    z-index: 1;
}

.promos-message {
    font-size: 22px;
    color: #232f3e;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 500;
    font-style: italic;
    background: linear-gradient(135deg, #232f3e 0%, #3a4b60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 20px;
    border: 2px dashed #ced4da;
    max-width: 400px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.countdown-placeholder:hover {
    border-color: #00a8e8;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.1);
}

.countdown-text {
    font-size: 18px;
    color: #3a4b60;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Animation for attention */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.promos-icon {
    animation: pulse 3s infinite ease-in-out;
}



    @media (max-width: 768px) {
            .promos-header {
        font-size: 32px;
    }
    
    .promos-card {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .promos-message {
        font-size: 18px;
    }
    
    .promos-icon {
        width: 50px;
        height: 50px;
    }
    .two-column-row {
        flex-direction: column;
        gap: 15px;
    }

    .faq-links {
        flex-direction: column;
    }

    .faq-link {
        text-align: center;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-navigation {
        padding: 15px;
    }

    .order-form-row {
        flex-direction: column;
        gap: 20px;
    }

    .order-form-card {
        padding: 25px;
    }

    .order-form-title {
        font-size: 22px;
    }

    .order-form-description {
        font-size: 14px;
    }
     .affiliate-form-row {
        flex-direction: column;
        gap: 15px;
    }

    .affiliate-col.small {
        flex: 1;
    }
}