/* Contact Page Specific Styles */
body {
    background-color: #ffffff;
}

.contact-page {
    background-color: #000000;
    color: white;
    min-height: 100vh;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 80px 0;
    background-color: #000000;
}

.who-we-are-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
}

.who-we-are-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.who-we-are-description {
    max-width: 800px;
    margin: 0 auto;
}

.who-we-are-description p {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.6;
    color: #e5e7eb;
    margin-bottom: 20px;
}

.hero-contact {
    height: 521px;
}

/* Team Members Section */
.team-members-section {
    padding: 100px 0;
    background-color: #000000;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    /* padding: 0 80px; */
}

.team-member-card {
    text-align: center;
}

.team-members-section-container {
    margin: 0 auto 200px auto;
    width: 1440px;
}

.member-photo-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin: 0 auto 24px;
    border-radius: 14px;
    overflow: hidden;
}

.member-photo-gradient {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(180deg, #1f3c88 0%, #5a3fff 100%);
    border-radius: 14px;
    opacity: 0.75;
}

.member-photo {
    position: relative;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 14px;
    padding: 4px;
    z-index: 1;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.member-info {
    text-align: left;
}

.member-name {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 4px;
}

.member-role {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 16px;
}

/* Where to Go Section */
.where-to-go-section {
    position: relative;
    /* height: 857px; */
    overflow: hidden;
    /* margin: 200px auto; */
    /* width: 1440px; */
    /* border-radius: 16px; */
    background: linear-gradient(to bottom, #000000 0%, #000000 60%, #ffffff 100%);
}

.where-to-go-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/c4d5502639ed9655ae3d52c475beee72d651736a.png') no-repeat center;
    background-size: 100% 100%;
    background-position: 50% 50%;
    filter: blur(28.65px);
    z-index: 1;
}

.where-to-go-section-container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto 0 auto;
}

.where-to-go-content {
    max-width: 1440px;
    /*margin: 0 auto;
    /* padding: 0 80px; */
    text-align: left;
    margin-bottom: 50px;
}

.where-to-go-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 30px;
}

.where-to-go-description {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #ffffff;
    max-width: 700px;
}

.contact-cards-grid {
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 20px;
    max-width: 1440px;
    /* margin: 0 auto; */
    /* padding: 0 80px; */
}

.contact-card {
    /* background: white; */
    /* border: 1px solid #e5e7eb; */
    border-radius: 14px;
    padding: 40px;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-person-info {
    gap: 20px;
}

.contact-person-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.contact-person-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-person-details {
    flex: 1;
}

.contact-person-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 28px;
    font-weight: 645;
    margin-bottom: 4px;
}

.contact-person-subtitle {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 16px;
}

.contact-person-info-details {
    margin-bottom: 16px;
}

.contact-person-name {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.contact-person-role {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-method-icon {
    width: 16px;
    height: 16px;
}

.contact-method-text {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.contact-card-button {
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    color: white;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-card-button:hover {
    background: #4a2fd9;
    transform: translateY(-2px);
}

/* Quick Reference Section */
.quick-reference-section {
    padding: 100px 0;
    /* background-color: #f8f9fa; */
}

.quick-reference-card {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    background: white;
    border: 0.625px solid #F3F4F6;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);

}

.quick-reference-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #101828;
    /* text-align: center; */
    margin-bottom: 24px;
}

.quick-reference-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.quick-reference-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-reference-category {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 10px;
    width: 150px;
}

.category-label {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #101828;
}

.quick-reference-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reference-link {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #4a5565;
    margin: 0;
}

.link-highlight {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    color: #5a3fff;
    text-decoration: underline;
}

/* Response Times Section */
.response-times-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.response-times-container {
    position: relative;
    width: 1440px;
    z-index: 2;
}

.response-times-content {
    max-width: 1440px;
    margin: 0 auto;
    /* padding: 0 80px; */
    /* text-align: center; */
    margin-bottom: 50px;
}

.response-times-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: white;
    margin-bottom: 23.87px;
}

.response-times-description {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: white;
    max-width: 684px;
    /* margin: 0 auto; */
}

.response-times-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    /* padding: 0 80px; */
}

.business-hours-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    color: white;
    height: 100%;
}

.business-hours-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
}

.schedule-section {
    margin-bottom: 24px;
}

.schedule-item {
    margin-bottom: 20px;
}

.schedule-days {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 4px;
    color: black;
}

.schedule-time {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 4px;
    color: black;
}

.schedule-time-bold {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #6081B6;
}

.schedule-time-muted {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.7;
}

.timezone-section {
    border-top: 1px solid black;
    padding-top: 24px;
}

.timezone-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 12px;
    color: black;
}

.timezone-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.timezone-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timezone-location {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 14px;
    opacity: 0.9;
    color: black;
    width: 60%;
}

.timezone-divider {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 14px;
    opacity: 0.9;
    color: black;
    width: 10%;
    text-align: center;
}

.timezone-time {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: black;
    width: 10%;
    text-align: right;
}

.response-cards-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.response-cards-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: white;
}

.response-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.response-card {
    background: white;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.response-card.emergency {
    background: white;
    grid-column: 1 / -1;
}

.response-card-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.response-card-icon.emergency {
    background: #ffe2e2;
}

.response-card-icon img {
    width: 20px;
    height: 20px;
}

.response-card-content {
    flex: 1;
}

.response-card-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #101828;
    margin-bottom: 4px;
}

.response-card-description {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #4a5565;
    margin-bottom: 20px;
    min-height: 50px;
}

.response-time-badge {
    background: #DCE8FB;
    color: #4E8AEB;
    border-radius: 8px;
    padding: 4px 12px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
}

.response-time-badge.phone {
    background: #F1DCFB;
    color: #B74EEB;
}

.response-time-badge.partnership {
    background: #F8E8D6;
    color: #DB8A34;
}

.response-time-badge.emergency {
    background: #ffe2e2;
    color: #e7000b;
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
    font-size: 16px;
}

/* Meeting Types Section */
.meeting-types-section {
    padding: 100px 0;
    /* background-color: #000000; */
    color: white;
}

.meeting-types-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: #000000;
    margin-bottom: 50px;
}

.meeting-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1440px;
    margin: 0 auto;
    /* padding: 0 80px; */
}

.meeting-card {
    background: #F2F7FE;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meeting-card-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meeting-card-icon img {
    width: 20px;
    height: 20px;
}

.meeting-card-content {
    flex: 1;
}

.meeting-card-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #101828;
    margin-bottom: 4px;
}

.meeting-card-description {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #4a5565;
    margin-bottom: 20px;
}

.meeting-duration {
    background: white;
    color: #6081B6;
    border-radius: 8px;
    padding: 10px;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    display: inline-block;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-form-container {
    max-width: 1440px;
    margin: 0 auto;
    /* padding: 0 80px; */
    background-color: white;
    border-radius: 16px;
}

.contact-form-header {
    /* text-align: center; */
    margin-bottom: 50px;
}

.contact-form-title {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 700;
    font-size: 48px;
    color: black;
    margin-bottom: 24px;
}

.contact-form-description {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: black;
    max-width: 684px;
    /* margin: 0 auto; */
}

.contact-form-card {
    background: #F2F7FE;
    /* border: 1px solid #e5e7eb; */
    border-radius: 16px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: black;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: none;
    border-radius: 10px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5a3fff;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

.submit-button {
    background: #5a3fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    color: white;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.submit-button:hover {
    background: #4a2fd9;
    transform: translateY(-2px);
}

.submit-icon {
    width: 16px;
    height: 16px;
}

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
    .who-we-are-content {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .who-we-are-title {
        font-size: 36px;
    }
    
    .who-we-are-description p {
        font-size: 18px;
    }
    
    .team-members-section-container {
        width: 100%;
        padding: 0 40px;
    }
    
    .team-members-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .where-to-go-section-container {
        width: 100%;
        padding: 0 40px;
    }
    
    .where-to-go-title {
        font-size: 36px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .response-times-container {
        width: 100%;
        padding: 0 40px;
    }
    
    .response-times-grid {
        grid-template-columns: 1fr;
    }
    
    .response-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .meeting-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-reference-card {
        padding: 30px;
    }
    
    .quick-reference-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-contact {
        height: auto;
        min-height: 300px;
    }
    
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .who-we-are-content {
        padding: 0 20px;
    }
    
    .who-we-are-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .who-we-are-description p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .team-members-section {
        padding: 60px 0;
    }
    
    .team-members-section-container {
        padding: 0 20px;
        margin-bottom: 100px;
    }
    
    .team-members-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .where-to-go-section-container {
        padding: 0 20px;
    }
    
    .where-to-go-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .where-to-go-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .contact-cards-grid {
        gap: 16px;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .contact-person-photo {
        width: 80px;
        height: 80px;
    }
    
    .contact-person-title {
        font-size: 24px;
    }
    
    .quick-reference-section {
        padding: 60px 0;
    }
    
    .quick-reference-card {
        padding: 24px;
        margin: 0 20px;
    }
    
    .quick-reference-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .response-times-section {
        padding: 60px 0;
    }
    
    .response-times-container {
        padding: 0 20px;
    }
    
    .response-times-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .response-times-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .response-times-grid {
        gap: 20px;
    }
    
    .business-hours-card {
        padding: 24px;
    }
    
    .business-hours-title {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .response-cards-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .response-card.emergency {
        grid-column: 1;
    }
    
    .meeting-types-section {
        padding: 60px 0;
    }
    
    .meeting-types-title {
        font-size: 28px;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .meeting-cards-grid {
        padding: 0 20px;
        gap: 16px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-container {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .contact-form-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .contact-form-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .contact-form-card {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-actions {
        justify-content: stretch;
    }
    
    .submit-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .who-we-are-title {
        font-size: 24px;
    }
    
    .where-to-go-title {
        font-size: 24px;
    }
    
    .response-times-title {
        font-size: 24px;
    }
    
    .meeting-types-title {
        font-size: 24px;
    }
    
    .contact-form-title {
        font-size: 24px;
    }
    
    .contact-person-title {
        font-size: 20px;
    }
}

/* Form Messages */
.form-message {
    padding: 16px 20px;
    margin-bottom: 24px;
    border-radius: 8px;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-message-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-message-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Disabled Button State */
.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}