/* style/contact.css */

/* Base styling for the contact page */
.page-contact {
    font-family: Arial, sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
    line-height: 1.6;
}

/* Sections */
.page-contact__hero-section,
.page-contact__methods-section,
.page-contact__faq-section,
.page-contact__cta-section {
    padding: 60px 20px;
    text-align: center;
}

.page-contact__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0A0A0A; /* Ensure consistency with body background */
}

.page-contact__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px; /* Space between image and content */
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* Soften edges */
    object-fit: cover;
}

.page-contact__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-contact__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    color: #FFD36B; /* Glow - good contrast */
    margin-bottom: 20px;
}

.page-contact__lead-paragraph {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF6D6; /* Text Main */
}

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

.page-contact__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    font-weight: 600;
    color: #F2C14E; /* Main color */
    margin-bottom: 20px;
}

.page-contact__section-description {
    font-size: 1em;
    margin-bottom: 40px;
    color: #FFF6D6; /* Text Main */
}

/* Buttons */
.page-contact__btn-primary,
.page-contact__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure responsiveness */
}

.page-contact__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #ffffff; /* White text for contrast */
    border: 2px solid transparent;
    margin: 10px;
}

.page-contact__btn-primary:hover {
    background: linear-gradient(180deg, #FFE890 0%, #F2C14E 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-contact__btn-secondary {
    background: #111111; /* Card BG */
    color: #F2C14E; /* Main color */
    border: 2px solid #F2C14E; /* Main color border */
    margin: 10px;
}

.page-contact__btn-secondary:hover {
    background: #F2C14E;
    color: #111111; /* Card BG */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

/* Contact Methods Section */
.page-contact__methods-section {
    background-color: #0A0A0A; /* Background */
}

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

.page-contact__method-card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-contact__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-contact__method-icon {
    width: 100%; /* Ensure full width within card, will be constrained by card width */
    height: auto;
    max-width: 250px; /* Example max width for icons */
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-contact__method-title {
    font-size: 1.5em;
    color: #F2C14E; /* Main color */
    margin-bottom: 15px;
}

.page-contact__method-text {
    font-size: 0.95em;
    color: #FFF6D6; /* Text Main */
    margin-bottom: 25px;
}