/* style/contact.css */
.page-contact {
    background-color: #0A0A0A; /* Background color from custom palette */
    color: #FFF6D6; /* Main text color from custom palette */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

/* Hero Section */
.page-contact__hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #F2C14E, #FFD36B);
    padding-bottom: 50px;
}

.page-contact__hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.page-contact__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__hero-content {
    max-width: 800px;
}

.page-contact__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #FFF6D6;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.05em;
}

.page-contact__hero-description {
    font-size: 1.15rem;
    color: #FFF6D6;
    margin-bottom: 30px;
}

.page-contact__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* General Section Styling */
.page-contact__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #F2C14E; /* Main brand color for titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-contact__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #FFF6D6;
}

/* Button Styling */
.page-contact__btn-primary,
.page-contact__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-contact__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111; /* Dark text for bright button background */
    border: none;
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-contact__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-contact__btn-secondary {
    background-color: transparent;
    color: #F2C14E;
    border: 2px solid #F2C14E;
}

.page-contact__btn-secondary:hover {
    background-color: #F2C14E;
    color: #111111; /* Dark text for brand color background */
    transform: translateY(-3px);
}

/* Channels Section */
.page-contact__channel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-contact__channel-card {
    background-color: #111111; /* Card BG color from custom palette */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12; /* Border color from custom palette */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-contact__channel-icon {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-contact__card-title {
    font-size: 1.8rem;
    color: #FFD36B; /* Auxiliary brand color for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-contact__card-text {
    font-size: 1rem;
    color: #FFF6D6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-contact__phone-number {
    font-size: 1.1rem;
    color: #FFF6D6;
    margin-bottom: 25px;
    font-weight: bold;
}

/* Form Section */
.page-contact__form-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-contact__form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.page-contact__form-content {
    text-align: center;
}

.page-contact__form-image-desktop {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: block; /* Ensures it takes up full width in mobile */
    margin-left: auto;
    margin-right: auto;
}

.page-contact__form-wrapper {
    background-color: #111111; /* Card BG color */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid #3A2A12;
}

.page-contact__contact-form {
    display: flex;
    flex-direction: column;
}

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

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

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #3A2A12;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #FFF6D6;
    font-size: 1rem;
    box-sizing: border-box;
}

.page-contact__form-input::placeholder,
.page-contact__form-textarea::placeholder {
    color: rgba(255, 246, 214, 0.6);
}

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    outline: none;
    border-color: #F2C14E;
    box-shadow: 0 0 0 3px rgba(242, 193, 78, 0.3);
}

.page-contact__form-submit {
    width: auto;
    align-self: flex-start;
    margin-top: 10px;
}

/* FAQ Section */
.page-contact__faq-section {
    padding: 60px 0;
    background-color: #0A0A0A;
}

.page-contact__faq-list {
    margin-top: 40px;
}