/* Contact Hero */
.contact-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11rem 0 8rem;
    overflow: hidden;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B1F3A;
    z-index: 0;
}

.contact-hero-background::before {
    content: none;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 15, 35, 0.55) 0%, rgba(5, 15, 35, 0.40) 60%, rgba(5, 15, 35, 0.62) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-hero-title {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    color: #D8DDE8;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.35);
    letter-spacing: -0.5px;
}

.contact-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: rgba(216,221,232,0.80);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.3pxem;
    color: rgba(240,240,240,0.82);
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-icon {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 220px;
    height: 220px;
    max-width: 200px;
    max-height: 200px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.hero-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-icon.animated {
    opacity: 0.6;
}

/* Contact Options */
.contact-options {
    padding: 5rem 0;
    background: #fff;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.option-card {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(58, 159, 208, 0.15);
    background: #fff;
}

.option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #5585b5 0%, #3d6a96 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.option-icon svg {
    color: #E8E8E8;
}

.option-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.option-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.option-link {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: #5585b5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.option-link:hover {
    color: #3d6a96;
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: #f8f9fa;
}

.contact-form-section .section-title {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.contact-form-section .section-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.form-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-form {
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1.125rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5585b5;
    box-shadow: 0 0 0 4px rgba(58, 159, 208, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-disclaimer {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(58, 159, 208, 0.05);
    border-left: 3px solid #5585b5;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.form-disclaimer svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: #5585b5;
}

.form-disclaimer p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.125rem 3rem;
    background: linear-gradient(135deg, #5585b5 0%, #3d6a96 100%);
    color: #E8E8E8;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(58, 159, 208, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 159, 208, 0.4);
}

.submit-btn svg {
    transition: transform 0.3s ease;
}

.submit-btn:hover svg {
    transform: translateX(5px);
}

/* Form Sidebar */
.form-sidebar {
    margin-top: 0;
}

.sidebar-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-item .day {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.hours-item .time {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-gray);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #5585b5 0%, #3d6a96 100%);
    color: #E8E8E8;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: #fff;
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    display: block;
    filter: saturate(1.1) contrast(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 65vh;
        padding: 8rem 0 5rem;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-icon {
        width: 140px;
        height: 140px;
        right: 5%;
        opacity: 0.4;
    }

    .contact-options {
        padding: 3rem 0;
    }

    .contact-form-section {
        padding: 4rem 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 5rem 0 3rem;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .hero-icon {
        display: none;
    }

    .option-card {
        padding: 2rem 1.5rem;
    }

    .option-icon {
        width: 60px;
        height: 60px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .sidebar-card {
        padding: 2rem;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

