/* Contact Us specific styles */

.contact-section {
padding: 5vw 4vw;
background-color: #f8fafc;
}

.contact-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
gap: 2vw;
align-items: flex-start;
}

/* Form Card Styles */
.contact-form-card {
flex: 2;
background: #ffffff;
padding: 3vw;
border-radius: 0.5vw;
box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.05);
text-align: center;
}

.contact-form-card h2 {
color: var(--brand-blue);
font-size: 1.5vw;
margin-top: 0;
margin-bottom: 2vw;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 0.05vw;
}

.form-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1.5vw;
margin-bottom: 2vw;
text-align: left;
}

.form-grid input,
.form-grid textarea {
width: 100%;
padding: 1vw 1.2vw;
border: 1px solid #e2e8f0;
border-radius: 0.25vw;
font-family: inherit;
font-size: 0.95vw;
color: #334155;
transition: all 0.3s ease;
background-color: #fcfcfc;
}

.form-grid input:focus,
.form-grid textarea:focus {
outline: none;
border-color: var(--brand-green);
box-shadow: 0 0 0 2px rgba(166, 206, 57, 0.2);
background-color: #ffffff;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
color: #94a3b8;
}

.message-input {
resize: vertical;
min-height: 100%;
}

.name-input { grid-column: 1 / 2; }
.email-input { grid-column: 2 / 3; }
.phone-input { grid-column: 1 / 2; }
.subject-input { grid-column: 1 / 2; }
.message-input {
grid-column: 2 / 3;
grid-row: 2 / 4;
}

.btn-submit {
background-color: var(--brand-green);
color: var(--brand-blue);
border: none;
padding: 1vw 2.5vw;
border-radius: 2vw;
font-size: 0.95vw;
font-weight: 700;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 0.05vw;
}

.btn-submit:hover {
background-color: var(--brand-blue);
color: #ffffff;
transform: translateY(-2px);
}

/* Info Card Styles */
.contact-info-card {
flex: 1;
background: #ebebeb;
padding: 2.5vw;
border-radius: 0.3vw;
box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.05);
}

.info-item {
margin-bottom: 2vw;
border-bottom: 2px solid #d1d1d1;
padding-bottom: 1.5vw;
}

.info-item:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}

.info-item h3 {
font-size: 1.1vw;
color: #333333;
margin: 0 0 1vw 0;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 0.05vw;
}

.info-item p {
font-size: 1vw;
color: #555555;
line-height: 1.6;
margin: 0;
}

.info-item p a {
color: inherit;
text-decoration: none;
transition: color 0.3s ease;
}

.info-item p a:hover {
color: var(--brand-blue);
}

/* Responsive Design */
@media (max-width: 1020px) {
.contact-container {
flex-direction: column;
gap: 6vw;
}

.contact-form-card,
.contact-info-card {
width: 100%;
padding: 5vw;
}

.contact-form-card h2 {
font-size: 2.5vw;
margin-bottom: 4vw;
}

.form-grid {
gap: 3vw;
margin-bottom: 4vw;
}

.form-grid input,
.form-grid textarea {
padding: 2vw;
font-size: 1.8vw;
}

.message-input {
min-height: 200px;
}

.btn-submit {
padding: 2vw 5vw;
font-size: 1.8vw;
}

.info-item {
margin-bottom: 4vw;
padding-bottom: 3vw;
}

.info-item h3 {
font-size: 2.2vw;
margin-bottom: 2vw;
}

.info-item p {
font-size: 1.8vw;
}
}

@media (max-width: 720px) {
.form-grid {
grid-template-columns: 1fr;
gap: 4vw;
}

.name-input, .email-input, .phone-input, .subject-input, .message-input {
grid-column: 1 / -1;
grid-row: auto;
}

.message-input {
min-height: 150px;
}

.contact-form-card h2 {
font-size: 5vw;
}

.form-grid input,
.form-grid textarea {
padding: 3.5vw;
font-size: 3.5vw;
}

.btn-submit {
padding: 3.5vw 8vw;
font-size: 3.5vw;
}

.info-item h3 {
font-size: 4vw;
margin-bottom: 3vw;
}

.info-item p {
font-size: 3.5vw;
}
}

/* Map Section Styles */
.map-section {
width: 100%;
line-height: 0; /* removes gap below iframe */
background: #f8fafc;
}

.map-section iframe {
width: 100%;
filter: grayscale(20%) contrast(1.1); /* Slight filter for aesthetic */
}
