.contact-section {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.contact-card {
    background: var(--navy-dark);
    border: 1px solid rgba(229, 190, 86, 0.3);
    border-radius: 8px;
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    min-height: 100px;
}

.contact-card:active, .contact-card:hover {
    border-color: var(--gold);
    transform: scale(0.98);
}

.icon-box {
    font-size: 2rem;
    color: var(--gold);
}

.contact-card h3 {
    color: white;
    font-size: 16pt;
    font-weight: 500;
}

.contact-card span {
    color: var(--gold-light);
    font-size: 14pt;
    font-weight: 300;
    opacity: 0.8;
    text-align: center;
    word-break: break-all;
    max-width: 100%;
    padding: 0 5px;
}

.form-container {
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    background: var(--navy-dark);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(229, 190, 86, 0.3);
    text-align: left;
    font-family: 'Kanit', sans-serif;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 14pt;
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: var(--navy-dark);
    border: 1px solid rgba(229, 190, 86, 0.2);
    font-weight: 200;
    border-radius: 4px;
    color: white;
    font-family: 'Kanit', sans-serif;
    font-size: 14pt;
    transition: border-color 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 4px;
    font-family: 'Kanit', sans-serif;
    font-weight: 200;
    font-style: italic;
    font-size: 16pt;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 199, 101, 0.3);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 900px;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }
    
    .form-container {
        max-width: 900px;
    }
}