/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey text on dark backgrounds */
    background-color: #0A192F; /* Primary dark blue background */
}

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

/* Hero Section */
.page-contact__hero {
    background-color: #0A192F;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('[GALLERY:hero:contact,support,customer_service,vin68,abstract_lines]');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.page-contact__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9), rgba(255, 215, 0, 0.2));
    z-index: 1;
}

.page-contact__hero .page-contact__container {
    position: relative;
    z-index: 2;
}

.page-contact__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-contact__description {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__keyword {
    color: #FFD700;
    font-weight: bold;
}

.page-contact__btn-primary {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #000000; /* Black text on gold for contrast */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__btn-primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

/* Contact Methods Section */
.page-contact__methods {
    padding: 60px 0;
    background-color: #1a2a44; /* Slightly lighter dark blue */
}

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

.page-contact__method-card {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
}

.page-contact__method-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-contact__method-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-contact__method-text {
    font-size: 1em;
    color: #CCCCCC;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-contact__method-link {
    display: inline-block;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-contact__method-link:hover {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-contact__social-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.page-contact__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #0A192F;
    border-radius: 50%;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__social-icon:hover {
    background-color: #0A192F;
    color: #FFD700;
    border: 1px solid #FFD700;
}

/* Form Section */
.page-contact__form-section {
    padding: 80px 0;
    background-color: #0A192F;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-contact__form-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 20px;
}

.page-contact__form-description {
    font-size: 1.1em;
    color: #CCCCCC;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #1a2a44;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-contact__form-group {
    margin-bottom: 25px;
}

.page-contact__form-label {
    display: block;
    font-size: 1em;
    color: #FFD700;
    margin-bottom: 8px;
    font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #334a6d;
    border-radius: 5px;
    background-color: #0A192F;
    color: #E0E0E0;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: #778899;
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    outline: none;
}

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

.page-contact__btn-submit {
    display: block;
    width: 100%;
    background-color: #FFD700;
    color: #000000;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-contact__btn-submit:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

/* CTA Section */
.page-contact__cta {
    padding: 80px 0;
    background-color: #1a2a44; /* Slightly lighter dark blue */
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.page-contact__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-contact__cta-description {
    font-size: 1.1em;
    color: #CCCCCC;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    padding: 15px 30px;
    border: 2px solid #FFD700;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-contact__btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

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

    .page-contact__description,
    .page-contact__form-description,
    .page-contact__cta-description {
        font-size: 1em;
    }

    .page-contact__method-title {
        font-size: 1.5em;
    }

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

    .page-contact__form {
        padding: 30px;
    }

    .page-contact__hero,
    .page-contact__methods,
    .page-contact__form-section,
    .page-contact__cta {
        padding: 50px 0;
    }
}

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

    .page-contact__btn-primary,
    .page-contact__btn-secondary {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-contact__form-title,
    .page-contact__cta-title {
        font-size: 2em;
    }

    .page-contact__form-input,
    .page-contact__form-textarea,
    .page-contact__btn-submit {
        padding: 10px;
    }
}