/* ---------------- Contact Hero ---------------- */
.contact-hero {
    background: url('https://cdn.pixabay.com/photo/2017/01/16/19/16/electronics-1985703_1280.jpg') center/cover no-repeat;
    padding: 120px 8%;
    text-align: center;
    color: #fff;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
    animation: fadeInUp 1s ease forwards;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* ---------------- Contact Section ---------------- */
.contact-section .grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: start;
}

/* Contact Info */
.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--french-blue);
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--gunmetal);
}

.info-list img {
    width: 24px;
    height: 24px;
    filter: invert(28%) sepia(84%) saturate(3361%) hue-rotate(197deg) brightness(93%) contrast(90%);
}

/* Contact Form */
.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--french-blue);
}

.contact-form .btn {
    margin-top: 15px;
}

/* ---------------- Animations ---------------- */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 768px) {
    .contact-section .grid-2 {
        grid-template-columns: 1fr;
    }
}
