/* Hubungi Kami Plugin Styles */

.hubungi-kami-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f5d5d5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hk-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Info Section */
.hk-info-section h2,
.hk-form-section h2 {
    color: #2c3e50;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

.hk-info-section > p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hk-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.hk-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(44, 62, 80, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.hk-contact-item h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.hk-contact-item p {
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.hk-social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hk-social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #2c3e50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hk-social-btn:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Form Section */
.hk-form {
    background-color: transparent;
}

.hk-form-group {
    margin-bottom: 20px;
}

.hk-form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.hk-form-group .required {
    color: #e74c3c;
}

.hk-form-group input[type="text"],
.hk-form-group input[type="email"],
.hk-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d4a5a5;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fef5f5;
    color: #2c3e50;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.hk-form-group input[type="text"]:focus,
.hk-form-group input[type="email"]:focus,
.hk-form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    background-color: #fff;
}

.hk-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.hk-submit-btn {
    background-color: #0066cc;
    color: white;
    padding: 12px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hk-submit-btn:hover {
    background-color: #0052a3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 102, 204, 0.3);
}

.hk-submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
#hk-form-message {
    margin-bottom: 20px;
    padding: 12px 15px;
    border-radius: 4px;
    display: none;
}

#hk-form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

#hk-form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Map Section */
.hk-map-section {
    width: 100%;
    margin-top: 20px;
}

#hk-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    border: 2px solid #d4a5a5;
    overflow: hidden;
}

/* Leaflet custom styles */
.leaflet-container {
    font-family: inherit;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 15px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hk-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hk-info-section h2,
    .hk-form-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .hubungi-kami-container {
        padding: 30px 15px;
    }
    
    .hk-info-section h2,
    .hk-form-section h2 {
        font-size: 24px;
    }
    
    .hk-contact-item {
        gap: 10px;
    }
    
    .hk-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .hk-social-btn {
        width: 40px;
        height: 40px;
    }
    
    #hk-map {
        height: 300px;
    }
    
    .hk-submit-btn {
        width: 100%;
    }
}