html,
body {
    background-color: #000000;
    color: #ECEFF1;
}
    background:
        linear-gradient(135deg, rgba(255, 215, 0, 0.16), rgba(255, 215, 0, 0) 48%),
        linear-gradient(180deg, #050505, #121212);
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    padding: 72px 20px 58px;
}

.contact-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-kicker {
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.contact-hero h2 {
    font-size: 2.45rem;
    line-height: 1.2;
    margin-bottom: 18px;
}

.contact-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #cccccc;
    line-height: 1.8;
}

.contact-visuals {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 20px 0;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 18px;
    background-color: #000000;
}

.contact-visual {
    min-height: 220px;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #2d2d2d;
    background-color: #0f0f0f;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-page {
    padding: 44px 20px 56px;
    background-color: #000000;
}

.contact-grid,
.contact-form-section {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 28px;
}

.contact-card {
    background-color: #111111;
    border: 1px solid #2d2d2d;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/HARMONY LOGO 1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.contact-card:hover::before {
    opacity: 0.15;
}

.contact-card h3,
.contact-card p,
.contact-card address,
.contact-list,
.contact-list li {
    position: relative;
    z-index: 1;
}

.contact-card h3,
.contact-form-copy h3,
.contact-cta h3 {
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.contact-card p,
.contact-card address,
.contact-form-copy p,
.contact-cta p {
    color: #d0d0d0;
    line-height: 1.8;
}

.contact-card address {
    font-style: normal;
}

.contact-card a,
.contact-socials a {
    color: #FFD700;
    text-decoration: none;
}

.contact-list {
    margin: 0;
    padding-left: 20px;
    color: #ECEFF1;
    line-height: 1.8;
}

.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 14px;
}

.contact-socials a {
    border: 1px solid #3a3a3a;
    border-radius: 999px;
    padding: 10px 16px;
    background-color: #0b0b0b;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
}

.contact-form {
    display: grid;
    gap: 12px;
}

.contact-form label {
    color: #ECEFF1;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #373737;
    border-radius: 10px;
    background-color: #090909;
    color: #ECEFF1;
    padding: 14px 16px;
    font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #8f8f8f;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form .cta-btn {
    display: inline-block;
    cursor: pointer;
    margin-top: 8px;
    background-color: #FFD700;
    color: #000000;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 14px 40px;
    border: 2px solid #FFD700;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3), 0 2px 6px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.contact-form .cta-btn:hover {
    transform: translateY(-3px);
    background-color: #000000;
    color: #FFD700;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.45), 0 4px 10px rgba(0,0,0,0.6);
}

.contact-form .cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.25);
}

.contact-cta {
    text-align: center;
    padding: 56px 20px;
    border-top: 2px solid #FFD700;
    border-bottom: 2px solid #FFD700;
    background-color: #090909;
}

.contact-cta p {
    max-width: 720px;
    margin: 0 auto 22px;
}

@media (max-width: 900px) {
    .contact-visuals,
    .contact-grid,
    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .contact-hero h2 {
        font-size: 1.95rem;
    }

    .contact-visual {
        min-height: 200px;
    }
}

@media (max-width: 640px) {
    .contact-page,
    .contact-hero,
    .contact-visuals,
    .contact-cta {
        padding-left: 14px;
        padding-right: 14px;
    }

    .contact-card,
    .contact-form-copy,
    .contact-form {
        padding: 22px;
    }
}