/* Contact Page Specific Styles */

/* Override navigation styles for contact page */
.nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #ffffff !important;
}

.nav-link.active {
    color: #ffffff !important;
    font-weight: 600;
}

.contact-hero {
    padding: 60px 0 5px;
    margin-bottom: 0;
}

.contact-title {
    color: #3704ec;
    font-size: 2rem;
    font-weight: 10;
    text-align: left;
    margin-bottom: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-content {
    background-color: #E2E8FE;
    padding: 5px 0 60px;
    min-height: 70vh;
}

.company-info {
    padding-right: 40px;
}

.company-info h2 {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.company-info h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.company-info h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.3;
}

.contact-details {
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(108, 139, 232, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 139, 232, 0.15);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6C8BE8, #9798EB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.2rem;
}

.contact-text h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-text p {
    color: #34495e;
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(108, 139, 232, 0.15);
    backdrop-filter: blur(10px);
}

.contact-form-container h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

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

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: #6C8BE8;
    box-shadow: 0 0 0 0.2rem rgba(108, 139, 232, 0.25);
    background-color: #ffffff;
}

.form-control::placeholder {
    color: #6c757d;
    font-weight: 400;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    margin: 25px 0;
    padding-left: 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border: 2px solid #6C8BE8;
    border-radius: 4px;
}

.form-check-input:checked {
    background-color: #6C8BE8;
    border-color: #6C8BE8;
}

.form-check-label {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #6C8BE8, #9798EB);
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 139, 232, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 139, 232, 0.4);
    background: linear-gradient(135deg, #5a7ce6, #8589E8);
}

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

.btn-submit:disabled,
.btn-submit.btn-disabled {
    background: #6c757d !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6;
}

.btn-submit:disabled:hover,
.btn-submit.btn-disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Success Message Styles */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    z-index: 1000;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .company-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .contact-icon i {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-content {
        padding: 40px 0;
    }
    
    .contact-hero {
        padding: 40px 0 30px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .company-info h2 {
        font-size: 1.5rem;
    }
    
    .company-info h3 {
        font-size: 1.2rem;
    }
    
    .company-info h4 {
        font-size: 1.1rem;
    }
}

/* Premium Solutions Section Styles */
.premium-solutions {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.premium-title {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.premium-description {
    color: #34495e;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive adjustments for premium section */
@media (max-width: 768px) {
    .premium-solutions {
        padding: 40px 0;
    }
    
    .premium-title {
        font-size: 1.8rem;
        padding: 0 20px;
    }
    
    .premium-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .premium-solutions {
        padding: 30px 0;
    }
    
    .premium-title {
        font-size: 1.5rem;
        padding: 0 15px;
    }
    
    .premium-description {
        font-size: 1rem;
        padding: 0 15px;
    }
}