:root {
    --primary-color: #0A2463;
    --secondary-color: #FFD700;
    --dark-bg-1: #0d0d0d; /* Assuming this is the body background from shared.css */
    --light-text-color: #ffffff;
    --dark-text-color: #333333;
    --light-gray-bg: #f5f5f5;
    --border-color: #e0e0e0;
}

.page-contact {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--light-text-color); /* Default text color for dark body background */
    background-color: var(--dark-bg-1);
}

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

.page-contact__contact-section {
    padding-top: 180px; /* To clear fixed header on desktop */
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--primary-color), #1a3a7c);
    color: var(--light-text-color);
    text-align: center;
}

.page-contact__main-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.page-contact__intro-text {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-contact__contact-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.page-contact__contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-contact__contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.page-contact__contact-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-contact__card-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.page-contact__card-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--light-text-color);
}

.page-contact__contact-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 20px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-contact__contact-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-contact__btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.page-contact__btn-primary:hover {
    background-color: #e0c100;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-contact__form-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-contact__form-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--secondary-color);
    text-align: center;
}

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

.page-contact__form-label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--light-text-color);
    font-weight: bold;
}

.page-contact__form-input,
.page-contact__form-textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--light-text-color);
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

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

.page-contact__form-input:focus,
.page-contact__form-textarea:focus {
    border-color: var(--secondary-color);
    background-color: rgba(0, 0, 0, 0.4);
    outline: none;
}

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

.page-contact__submit-button {
    width: 100%;
    margin-top: 20px;
}

.page-contact__why-choose-us {
    padding: 80px 0;
    background-color: var(--dark-bg-1);
    color: var(--light-text-color);
    text-align: center;
}

.page-contact__section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

.page-contact__feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.page-contact__feature-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.page-contact__feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.page-contact__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-contact__feature-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.page-contact__feature-description {
    font-size: 16px;
    color: var(--light-text-color);
}

.page-contact__faq-section {
    padding: 80px 0;
    background-color: #1a1a1a; /* Slightly different dark background for contrast */
    color: var(--light-text-color);
    text-align: center;
}

.page-contact__faq-list {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.page-contact__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.page-contact__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 15px;
    opacity: 0;
}

.page-contact__faq-item.active .page-contact__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 5px 5px;
}

.page-contact__faq-answer p {
    color: var(--light-text-color);
}

.page-contact__faq-answer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-contact__faq-answer a:hover {
    color: #e0c100;
}

.page-contact__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-contact__faq-question:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.page-contact__faq-question:active {
    background: rgba(255, 255, 255, 0.2);
}

.page-contact__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--light-text-color);
}

.page-contact__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-contact__faq-item.active .page-contact__faq-toggle {
    color: var(--secondary-color);
    transform: rotate(45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-contact__main-title {
        font-size: 38px;
    }
    .page-contact__section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .page-contact__contact-section {
        padding-top: 140px; /* To clear fixed header on mobile */
        padding-bottom: 60px;
    }
    .page-contact__main-title {
        font-size: 32px;
    }
    .page-contact__intro-text {
        font-size: 16px;
    }
    .page-contact__contact-info-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .page-contact__contact-card {
        max-width: 90%;
    }
    .page-contact__form-wrapper {
        padding: 30px 20px;
    }
    .page-contact__form-title {
        font-size: 28px;
    }
    .page-contact__why-choose-us,
    .page-contact__faq-section {
        padding: 60px 0;
    }
    .page-contact__section-title {
        font-size: 28px;
    }
    .page-contact__feature-grid {
        flex-direction: column;
        align-items: center;
    }
    .page-contact__feature-item {
        max-width: 90%;
    }
    .page-contact__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    .page-contact__faq-question h3 {
        font-size: 15px;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    .page-contact__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    .page-contact__faq-answer {
        padding: 0 15px;
    }
    .page-contact__faq-item.active .page-contact__faq-answer {
        padding: 15px !important;
    }
    .page-contact__contact-link {
        font-size: 14px;
        padding: 8px 15px;
    }
    .page-contact__btn-primary {
        font-size: 16px;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-contact__main-title {
        font-size: 28px;
    }
    .page-contact__intro-text {
        font-size: 15px;
    }
    .page-contact__contact-card,
    .page-contact__feature-item {
        padding: 25px;
    }
    .page-contact__card-title {
        font-size: 20px;
    }
    .page-contact__card-description {
        font-size: 14px;
    }
    .page-contact__form-title {
        font-size: 24px;
    }
    .page-contact__form-label,
    .page-contact__form-input,
    .page-contact__form-textarea {
        font-size: 14px;
    }
    .page-contact__section-title {
        font-size: 24px;
    }
    .page-contact__feature-title {
        font-size: 18px;
    }
    .page-contact__feature-description {
        font-size: 14px;
    }
    .page-contact__faq-question h3 {
        font-size: 14px;
    }
}