* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #f4f7f6;
    color: #333;
}

.main-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
}

.input-group{
    margin-top: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.info-card, .form-card, .map-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}


.info-card h2 { 
    margin-bottom: 10px; 
}
.subtitle { 
    color: #888; 
    font-size: 14px; 
    margin-bottom: 30px; 
}

.info-item {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.info-item label {
    display: block;
    font-size: 12px;
    color: #999;
    font-weight: bold;
    margin-bottom: 5px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
}

.phone-input { display: flex; gap: 10px; }
.prefix {
    padding: 12px;
    background: #eee;
    border-radius: 8px;
    font-size: 14px;
}

textarea { height: 100px; resize: none; }

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* Map Styling */
.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.map-placeholder {
    width: 100%;
    height: 350px;
    background: #d1e0d7;
    border-radius: 8px;
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 60%;
    font-size: 30px;
}


@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .nav-content nav { display: none; }
}

.clickable-map {
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.clickable-map:hover {
    transform: scale(1.01);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.map-label {
    margin-top: 10px;
    font-size: 12px;
    color: #444;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 500;
}