/* ========================================
   CONTACT PAGE STYLES
   Heritage Life Solutions
   ======================================== */

/* ========================================
   HERO SECTION WITH FORM CARD
   ======================================== */
.contact-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0.4) 100%);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-hero-text {
    color: var(--color-navy);
}

.contact-hero-title {
    font-family: var(--font-family);
    font-size: var(--h1-size);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-family: var(--font-family);
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Form Card */
.contact-form-card {
    background: var(--color-white);
    border-radius: var(--button-radius);
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-title {
    font-family: var(--font-family);
    font-size: var(--h2-size);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form-placeholder {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--color-light-grey);
    border-radius: var(--button-radius);
    color: #999;
    font-style: italic;
}

/* ========================================
   CONTACT INFO SECTION
   ======================================== */
.contact-info-section {
    background: var(--color-navy);
    padding: 3rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
}

.contact-info-brand {
    display: flex;
    align-items: center;
}

.contact-logo {
    max-width: 150px;
    height: auto;
}

.contact-info-details {
    color: var(--color-white);
}

.contact-info-title {
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info-list a {
    color: var(--color-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: var(--color-primary);
}

.contact-icon {
    font-size: 1.25rem;
}

/* Social Icons */
.contact-info-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-facebook {
    background: #1877f2;
}

.social-tiktok {
    background: #000000;
}

.social-youtube {
    background: #ff0000;
}

.social-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-linkedin {
    background: #0a66c2;
}

.social-x {
    background: #000000;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */
@media (max-width: 992px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-form-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .contact-info-brand {
        justify-content: center;
    }

    .contact-info-list li {
        justify-content: center;
    }

    .contact-info-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .contact-hero-title {
        font-size: 2rem;
    }

    .contact-hero-subtitle {
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-info-social {
        flex-wrap: wrap;
    }

    .social-icon {
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }
}
