/* style/contact.css */
.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A2A3A; /* Main dark background */
}

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

.page-contact__hero {
    background: linear-gradient(135deg, #1A2A3A 0%, #3a5c7c 100%); /* Dark blue gradient */
    color: #FFFFFF; /* White text for hero section */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-contact__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.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__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-contact__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #CCCCCC;
}

.page-contact__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-contact__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2A3A; /* Dark text on gold button */
    border: 2px solid #FFD700;
}

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

.page-contact__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
}

.page-contact__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2A3A;
    transform: translateY(-2px);
}

.page-contact__info-section, .page-contact__form-section, .page-contact__location-section {
    padding: 60px 0;
    text-align: center;
}

.page-contact__info-section {
    background-color: #2a3d4e; /* Slightly lighter dark background */
}

.page-contact__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 15px;
}

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

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

.page-contact__method-card {
    background-color: #1A2A3A; /* Dark card background */
    border: 1px solid #33475b;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-contact__method-title {
    font-size: 1.8em;
    color: #FFD700; /* Gold for method titles */
    margin-bottom: 15px;
}

.page-contact__method-text {
    color: #CCCCCC;
    margin-bottom: 20px;
}

.page-contact__contact-detail {
    font-size: 1.1em;
    margin-top: 15px;
}

.page-contact__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-contact__link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-contact__form-section {
    background-color: #1A2A3A;
}

.page-contact__form {
    max-width: 700px;
    margin: 40px auto 0;
    background-color: #2a3d4e; /* Slightly lighter dark background for form */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
}

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

.page-contact__label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #FFD700; /* Gold for labels */
}

.page-contact__input, .page-contact__textarea {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #33475b; /* Darker input background */
    color: #FFFFFF; /* White text in inputs */
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.page-contact__input:focus, .page-contact__textarea:focus {
    border-color: #FFD700; /* Gold border on focus */
    outline: none;
}

.page-contact__textarea {
    resize: vertical;
}

.page-contact__location-section {
    background-color: #2a3d4e;
}

.page-contact__map-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
}

.page-contact__map-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-contact__address-info {
    text-align: left;
    max-width: 400px;
    background-color: #1A2A3A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-contact__address-text {
    font-size: 1.1em;
    color: #CCCCCC;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__title {
        font-size: 3em;
    }
    .page-contact__section-title {
        font-size: 2em;
    }
    .page-contact__contact-methods {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-contact__map-container {
        flex-direction: column;
    }
    .page-contact__address-info {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .page-contact__hero {
        padding: 60px 0;
    }
    .page-contact__title {
        font-size: 2.5em;
    }
    .page-contact__subtitle {
        font-size: 1.1em;
    }
    .page-contact__section-title {
        font-size: 1.8em;
    }
    .page-contact__info-section, .page-contact__form-section, .page-contact__location-section {
        padding: 40px 0;
    }
    .page-contact__contact-methods {
        grid-template-columns: 1fr;
    }
    .page-contact__form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-contact__hero {
        padding: 40px 0;
    }
    .page-contact__title {
        font-size: 2em;
    }
    .page-contact__subtitle {
        font-size: 1em;
    }
    .page-contact__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-contact__section-title {
        font-size: 1.5em;
    }
    .page-contact__section-description {
        font-size: 0.9em;
    }
    .page-contact__method-title {
        font-size: 1.5em;
    }
    .page-contact__method-card {
        padding: 20px;
    }
    .page-contact__form {
        padding: 20px;
    }
    .page-contact__input, .page-contact__textarea {
        width: calc(100% - 16px);
        padding: 10px 8px;
    }
    .page-contact__address-title {
        font-size: 1.5em;
    }
    .page-contact__address-text {
        font-size: 1em;
    }
}