/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-contact-hero {
    background: linear-gradient(135deg, #007bff, #4da3ff);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-contact-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.page-contact-hero .page-contact-container {
    position: relative;
    z-index: 2;
}

.page-contact-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-contact-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e9ecef;
}

/* Channels Section */
.page-contact-channels {
    padding: 60px 0;
    text-align: center;
    background-color: #ffffff;
}

.page-contact-subtitle {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #007bff;
    font-weight: bold;
}

.page-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-contact-channel-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-channel-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 123, 255, 0.3));
}

.page-contact-channel-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #007bff;
}

.page-contact-channel-text {
    color: #555;
    margin-bottom: 20px;
}

.page-contact-btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-contact-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-contact-btn-secondary {
    background-color: #ffc107;
    color: #333;
}

.page-contact-btn-secondary:hover {
    background-color: #e0a800;
    color: #333;
}

.page-contact-social-links {
    margin-top: 15px;
}

.page-contact-social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    margin: 0 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-contact-social-icon:hover {
    background-color: #0056b3;
}

/* Form Section */
.page-contact-form-section {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.page-contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-contact-form-group {
    margin-bottom: 25px;
    text-align: left;
}

.page-contact-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.page-contact-input,
.page-contact-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1em;
    color: #495057;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact-input:focus,
.page-contact-textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.page-contact-textarea {
    resize: vertical;
}

.page-contact-btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-contact-btn-submit:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-contact-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    font-weight: bold;
    display: none;
    text-align: center;
}

.page-contact-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.page-contact-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* CTA Section */
.page-contact-cta-section {
    background: linear-gradient(90deg, #007bff, #ffc107);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-contact-cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.page-contact-cta-section .page-contact-container {
    position: relative;
    z-index: 2;
}

.page-contact-subtitle-white {
    color: #fff;
}

.page-contact-description-white {
    color: #e9ecef;
}

.page-contact-btn-promo {
    background-color: #ffc107;
    color: #333;
    padding: 15px 35px;
    font-size: 1.2em;
    border-radius: 50px;
    margin-top: 30px;
}

.page-contact-btn-promo:hover {
    background-color: #e0a800;
    color: #333;
    transform: translateY(-3px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-contact-title {
        font-size: 2.5em;
    }

    .page-contact-subtitle {
        font-size: 2em;
    }

    .page-contact-grid {
        grid-template-columns: 1fr;
    }

    .page-contact-form {
        padding: 30px;
    }

    .page-contact-btn-promo {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-contact-title {
        font-size: 2em;
    }

    .page-contact-subtitle {
        font-size: 1.8em;
    }

    .page-contact-hero, .page-contact-cta-section {
        padding: 60px 0;
    }

    .page-contact-channel-item {
        padding: 20px;
    }

    .page-contact-form {
        padding: 20px;
    }
}