/* --- Styles for the Contact Us Page --- */

/* Page Title (Consistent with other pages) */
.page-title-section {
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #444;
}
.page-title-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

/* Main Contact Section */
.contact-section {
    padding: 60px 0;
}
.contact-box {
    display: flex;
    gap: 50px;
    background-color: #2c2929;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #444;
}

/* Left Side: Contact Info */
.contact-info {
    flex: 1;
}
.contact-info .logo {
    display: block;          /* Make it a block element to allow centering */
    margin: 0 auto 30px;     /* Top: 0, Left/Right: auto (centers it), Bottom: 30px */
    height: 80px;
    width: auto;
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.4;
}
.company-address, .contact-details {
    margin: 30px 0;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}
.company-address address {
    font-style: normal;
    line-height: 1.8;
    color: #b0b0b0;
}
.contact-details p {
    margin-bottom: 10px;
}
.contact-details a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}
.contact-details a:hover {
    color: var(--primary-color);
}
.support-hours {
    font-size: 0.9rem;
    color: #a0a0a0;
    font-style: italic;
}

/* Right Side: Contact Form */
.contact-form-container {
    flex: 1;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #e0e0e0;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: #221F1F;
    border: 1px solid #555;
    border-radius: 5px;
    color: var(--text-color);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}
.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

/* Success Message */
.success-message {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    background-color: #221F1F;
}
.success-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .contact-box {
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .page-title-section h1 {
        font-size: 2.5rem;
    }
    .contact-info h2 {
        font-size: 1.6rem;
    }
}