/* Contact Page Styles */

/* Contact Hero (Simplified) */
.contact-hero {
    background-color: var(--color-gray-900);
    color: var(--color-white);
    padding: calc(var(--space-20) + var(--space-12)) 0 var(--space-12);
    text-align: center;
}

.contact-hero h1 {
    color: var(--color-white);
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-4);
}

.contact-hero p {
    color: var(--color-gray-400);
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: var(--space-12);
}

.method-card {
    text-align: center;
    padding: var(--space-6);
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.method-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #1e40af 0%, #60a5fa 100%);
}

.method-icon {
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    color: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.method-card h4 {
    color: #ffffff;
    margin-bottom: var(--space-2);
    font-weight: 600;
}

.method-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
}


/* FAQ Styles */
.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: var(--space-6) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--color-gray-900);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-right: var(--space-8);
}

.faq-answer p {
    padding-bottom: var(--space-6);
    color: var(--color-gray-600);
    line-height: 1.6;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--color-gray-400);
    width: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    /* Sufficient for typical answer length */
}

/* Form Styles */
.contact-form-container {
    background: linear-gradient(135deg, #101827 0%, #1e40af 50%, #3b82f6 100%);
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    color: white;
    border: none;
}

/* Abstract decorative shape */
.contact-form-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

/* Form Specific Text & Label Overrides */
.contact-form-container h2 {
    color: white;
    font-weight: 700;
}

.contact-form-container .form-label {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form-container .form-control {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-container .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Override button to pop against dark background */
.contact-form-container .btn-primary {
    background-color: white;
    color: #1e40af;
    border: none;
}

.contact-form-container .btn-primary:hover {
    background-color: #f3f4f6;
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-2);
    color: var(--color-gray-700);
}

.form-required {
    color: var(--color-error);
}

.form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-family-body);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.3);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-width-full {
    width: 100%;
}

/* Calendar Section */
/* Calendar Section - WOW Edition */
.calendar-container {
    background: linear-gradient(135deg, #101827 0%, #1e40af 50%, #3b82f6 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* Abstract decorative shape */
.calendar-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    pointer-events: none;
}

.calendar-text {
    color: rgba(255, 255, 255, 0.9);
}

.calendar-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.calendar-list-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.calendar-icon {
    color: #60a5fa;
    /* Light blue accent */
    width: 20px;
}

/* Override button to pop against dark background */
.calendar-container .btn-primary {
    background-color: white;
    color: #1e40af;
    /* Dark blue text */
    border: none;
}

.calendar-container .btn-primary:hover {
    background-color: #f3f4f6;
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.calendar-container h2 {
    color: white;
    font-weight: 700;
}