/* ================================================================
   GLT CONTACT - TRADITIONAL GRID THEME
   ================================================================ */

.glt-contact-trad {
    padding: 100px 0;
    background: #f8fafc;
}

.glt-contact-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* 1. Left Column: Info Styling */
.glt-info-header { margin-bottom: 40px; }
.glt-info-desc { color: #64748b; font-size: 1.1rem; line-height: 1.6; margin-top: 15px; }

.glt-method-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.glt-method-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #0ea5e9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.glt-method-text label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1px;
}

.glt-method-text p {
    color: #0f172a;
    font-weight: 700;
    margin: 0;
}

.glt-social-wrap label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #94a3b8;
    margin-bottom: 15px;
}

.glt-social-links { display: flex; gap: 15px; }
.glt-social-links a {
    width: 40px;
    height: 40px;
    background: #0f172a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.glt-social-links a:hover { background: #0ea5e9; transform: translateY(-3px); }

/* 2. Right Column: Form Styling */
.glt-form-terminal-frame {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.glt-terminal-header {
    background: #0f172a;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.glt-status-light { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; }
.glt-status-light.pulse { animation: gltPulse 2s infinite; }

.glt-terminal-title { color: #94a3b8; font-family: monospace; font-size: 0.7rem; }

.glt-pro-form { padding: 40px; }

.glt-pro-field { position: relative; margin-bottom: 25px; }
.glt-pro-field input, .glt-pro-field select, .glt-pro-field textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    font-family: inherit;
    font-weight: 600;
    outline: none;
    transition: border-color 0.3s;
}

.glt-pro-field label {
    position: absolute;
    left: 0; top: 12px;
    color: #94a3b8;
    pointer-events: none;
    transition: all 0.3s;
}

.glt-pro-field input:focus ~ label, 
.glt-pro-field input:not(:placeholder-shown) ~ label,
.glt-pro-field textarea:focus ~ label,
.glt-pro-field textarea:not(:placeholder-shown) ~ label {
    top: -15px; font-size: 0.75rem; color: #0ea5e9; font-weight: 800;
}

.glt-pro-field input:focus, .glt-pro-field textarea:focus { border-bottom-color: #0ea5e9; }

.glt-btn-submit-pro {
    width: 100%;
    padding: 18px;
    background: #0ea5e9;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.glt-btn-submit-pro:hover { background: #0f172a; transform: scale(1.02); }

/* 3. Map Section */
.glt-map-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.glt-map-container iframe {
	width: 100%;
	height: 350px;
}

.glt-map-overlay-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: #0f172a;
    color: #0ea5e9;
    padding: 8px 15px;
    font-family: monospace;
    font-size: 0.7rem;
    border-radius: 4px;
    font-weight: 700;
}

@keyframes gltPulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@media (max-width: 1024px) {
    .glt-contact-grid-2 { grid-template-columns: 1fr; gap: 50px; }
}