/* style/contact.css */

/* --- Variables (from design style guide) --- */
:root {
    --primary-color: #0A246A; /* Dark Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f9f9f9;
    --background-dark: #0A246A; /* Using primary color for dark sections */
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
}

/* --- Base Page Styles --- */
.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark); /* Default text color for light background */
    background-color: var(--background-light); /* Default body background is light */
}

/* --- Section Styling --- */
.page-contact__hero-section {
    position: relative;
    padding: 120px 20px 60px; /* Adjusted padding-top for fixed header */
    background: linear-gradient(135deg, var(--primary-color) 0%, #1A3A7E 100%);
    color: var(--text-light);
    text-align: center;
    overflow: hidden; /* Ensure no overflow */
}

.page-contact__hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-contact__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--text-light);
    line-height: 1.2;
}

.page-contact__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    opacity: 0.9;
}

.page-contact__description--light {
    color: var(--text-light);
}

.page-contact__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%; /* Ensure container takes full width for wrapping */
    box-sizing: border-box;
}

.page-contact__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure text wraps within button */
    box-sizing: border-box; /* Include padding/border in width */
    max-width: 100%; /* Ensure button doesn't exceed container */
    width: auto; /* Default width */
}

.page-contact__cta-button--primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-contact__cta-button--primary:hover {
    background: color-mix(in srgb, var(--secondary-color) 90%, black 10%); /* Darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.page-contact__cta-button--secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}